diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:30:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:30:40 -0600 |
commit | 32459311b349db581cc5fb0d80739a95b3d998b4 (patch) | |
tree | fd6475e6f0e015fce495961d6a0c50027bb95faa /xparts | |
parent | ef5a04df564ad5c27406c41fb55e32ad3aa39d25 (diff) | |
download | tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.tar.gz tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.zip |
Rename additional global TQt functions
Diffstat (limited to 'xparts')
-rw-r--r-- | xparts/mozilla/kmozillapart.cpp | 6 | ||||
-rw-r--r-- | xparts/mozilla/kshell.cpp | 2 | ||||
-rw-r--r-- | xparts/src/kde/kbrowsersignals.cpp | 2 | ||||
-rw-r--r-- | xparts/src/kde/xparthost_kpart.cpp | 6 | ||||
-rw-r--r-- | xparts/xpart_notepad/shell_xparthost.cpp | 2 | ||||
-rw-r--r-- | xparts/xpart_notepad/xp_notepad_factory.cpp | 6 |
6 files changed, 12 insertions, 12 deletions
diff --git a/xparts/mozilla/kmozillapart.cpp b/xparts/mozilla/kmozillapart.cpp index 8eba1441..cb61e5e3 100644 --- a/xparts/mozilla/kmozillapart.cpp +++ b/xparts/mozilla/kmozillapart.cpp @@ -26,9 +26,9 @@ KMozillaPart::KMozillaPart(TQWidget *parentWidget, const char *widgetName, << kapp->dcopClient()->appId() << objId(); m_partProcess->start(); - qDebug("---->>>>>> enter loop"); + tqDebug("---->>>>>> enter loop"); kapp->enter_loop(); - qDebug("----<<<<<< left loop"); + tqDebug("----<<<<<< left loop"); } KMozillaPart::~KMozillaPart() @@ -39,7 +39,7 @@ KMozillaPart::~KMozillaPart() void KMozillaPart::createActions( const TQCString &xmlActions ) { XPartHost_KPart::createActions( xmlActions ); - qDebug("----<<<<<< exit loop"); + tqDebug("----<<<<<< exit loop"); kapp->exit_loop(); } diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp index e3f87279..c644715d 100644 --- a/xparts/mozilla/kshell.cpp +++ b/xparts/mozilla/kshell.cpp @@ -50,7 +50,7 @@ public slots: } void mergeGUI() { - qDebug("initGUI"); + tqDebug("initGUI"); setXMLFile("/home/lars/kmozilla/kmozilla/parthost.rc"); createGUI( m_host ); } 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() ); } diff --git a/xparts/xpart_notepad/shell_xparthost.cpp b/xparts/xpart_notepad/shell_xparthost.cpp index d043d766..2513fc51 100644 --- a/xparts/xpart_notepad/shell_xparthost.cpp +++ b/xparts/xpart_notepad/shell_xparthost.cpp @@ -57,7 +57,7 @@ void ShellWindow::slotOpenUrl( const TQString &url ) void ShellWindow::mergeGUI() { - qDebug("initGUI"); + tqDebug("initGUI"); setXMLFile("shell_xparthost.rc"); createGUI( m_host ); m_host->widget()->setFocus(); diff --git a/xparts/xpart_notepad/xp_notepad_factory.cpp b/xparts/xpart_notepad/xp_notepad_factory.cpp index 59cf0499..799c83f8 100644 --- a/xparts/xpart_notepad/xp_notepad_factory.cpp +++ b/xparts/xpart_notepad/xp_notepad_factory.cpp @@ -52,9 +52,9 @@ XP_NotepadPart::XP_NotepadPart(TQWidget *parentWidget, const char *widgetName, << kapp->dcopClient()->appId() << objId(); m_partProcess->start(); - qDebug("---->>>>>> enter loop"); + tqDebug("---->>>>>> enter loop"); kapp->enter_loop(); - qDebug("----<<<<<< left loop"); + tqDebug("----<<<<<< left loop"); } XP_NotepadPart::~XP_NotepadPart() @@ -65,7 +65,7 @@ XP_NotepadPart::~XP_NotepadPart() void XP_NotepadPart::createActions( const TQCString &xmlActions ) { XPartHost_KPart::createActions( xmlActions ); - qDebug("----<<<<<< exit loop"); + tqDebug("----<<<<<< exit loop"); kapp->exit_loop(); } |