summaryrefslogtreecommitdiffstats
path: root/xparts/src/kde
diff options
context:
space:
mode:
Diffstat (limited to 'xparts/src/kde')
-rw-r--r--xparts/src/kde/kbrowsersignals.cpp2
-rw-r--r--xparts/src/kde/xparthost_kpart.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/xparts/src/kde/kbrowsersignals.cpp b/xparts/src/kde/kbrowsersignals.cpp
index 18c58362..59a688e4 100644
--- a/xparts/src/kde/kbrowsersignals.cpp
+++ b/xparts/src/kde/kbrowsersignals.cpp
@@ -6,7 +6,7 @@
KBrowserSignals::KBrowserSignals( XPartHost_KPart *_part, DCOPRef extension )
: KParts::BrowserExtension( _part )
{
- qDebug("KBrowserSignals constructor");
+ tqDebug("KBrowserSignals constructor");
part = _part;
ext = new XBrowserExtension_stub( extension.app(), extension.object() );
ext->setBrowserSignals( DCOPRef( this ) );
diff --git a/xparts/src/kde/xparthost_kpart.cpp b/xparts/src/kde/xparthost_kpart.cpp
index cd9ca39e..79815337 100644
--- a/xparts/src/kde/xparthost_kpart.cpp
+++ b/xparts/src/kde/xparthost_kpart.cpp
@@ -50,7 +50,7 @@ DCOPRef XPartHost_KPart::registerXPart( const DCOPRef &part )
embed->show();
DCOPRef ref = m_stub->queryExtension("browserextension");
if( !ref.isNull() ) {
- qDebug(" found browser extension ");
+ tqDebug(" found browser extension ");
be = new KBrowserSignals( this, ref );
}
return DCOPRef( kapp->dcopClient()->appId(), objId() );
@@ -59,7 +59,7 @@ DCOPRef XPartHost_KPart::registerXPart( const DCOPRef &part )
void XPartHost_KPart::createActions( const TQCString &xmlActions )
{
- qDebug("--> createActions");
+ tqDebug("--> createActions");
// creates a set of actions and adds them to the actionCollection
TQDomDocument d;
d.setContent( xmlActions );
@@ -119,7 +119,7 @@ void XPartHost_KPart::canceled( const TQString &errMsg )
bool XPartHost_KPart::openURL( const KURL &url )
{
- qDebug("XPartHost_KPart::openUrl()");
+ tqDebug("XPartHost_KPart::openUrl()");
return m_stub->openURL( url.url().latin1() );
}