diff options
Diffstat (limited to 'xparts/mozilla')
-rw-r--r-- | xparts/mozilla/kmozillapart.cpp | 8 | ||||
-rw-r--r-- | xparts/mozilla/kmozillapart.h | 2 | ||||
-rw-r--r-- | xparts/mozilla/kshell.cpp | 12 |
3 files changed, 11 insertions, 11 deletions
diff --git a/xparts/mozilla/kmozillapart.cpp b/xparts/mozilla/kmozillapart.cpp index d59c7e2c..3bea5587 100644 --- a/xparts/mozilla/kmozillapart.cpp +++ b/xparts/mozilla/kmozillapart.cpp @@ -6,7 +6,7 @@ #include <kstdaction.h> #include <tdeaction.h> #include <tdemainwindow.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <tdeparts/mainwindow.h> #include <kdebug.h> #include <tdeaboutdata.h> @@ -23,11 +23,11 @@ KMozillaPart::KMozillaPart(TQWidget *parentWidget, const char *widgetName, m_partProcess = new TDEProcess; *m_partProcess << "kmozilla" - << kapp->dcopClient()->appId() << objId(); + << tdeApp->dcopClient()->appId() << objId(); m_partProcess->start(); tqDebug("---->>>>>> enter loop"); - kapp->enter_loop(); + tdeApp->enter_loop(); tqDebug("----<<<<<< left loop"); } @@ -40,7 +40,7 @@ void KMozillaPart::createActions( const TQCString &xmlActions ) { XPartHost_KPart::createActions( xmlActions ); tqDebug("----<<<<<< exit loop"); - kapp->exit_loop(); + tdeApp->exit_loop(); } TDEAboutData *KMozillaPart::createAboutData() diff --git a/xparts/mozilla/kmozillapart.h b/xparts/mozilla/kmozillapart.h index 00589d14..b53f4d16 100644 --- a/xparts/mozilla/kmozillapart.h +++ b/xparts/mozilla/kmozillapart.h @@ -8,7 +8,7 @@ class TDEProcess; class KMozillaPart : public XPartHost_KPart { - Q_OBJECT + TQ_OBJECT public: KMozillaPart(TQWidget *parentWidget, const char *widgetName, diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp index 2b916dd5..33825526 100644 --- a/xparts/mozilla/kshell.cpp +++ b/xparts/mozilla/kshell.cpp @@ -7,13 +7,13 @@ #include <kstdaction.h> #include <tdeaction.h> #include <tdemainwindow.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <tdeparts/mainwindow.h> #include <kdebug.h> class ShellWindow : public KParts::MainWindow { - Q_OBJECT + TQ_OBJECT public: ShellWindow() @@ -22,19 +22,19 @@ public: setCentralWidget( m_host->widget() ); - connect(m_host, TQT_SIGNAL( actionsInitialized() ), this, TQT_SLOT( mergeGUI() ) ); + connect(m_host, TQ_SIGNAL( actionsInitialized() ), this, TQ_SLOT( mergeGUI() ) ); #if 1 m_partProcess = new TDEProcess; *m_partProcess << "./kmozilla" - << kapp->dcopClient()->appId() << m_host->objId(); + << tdeApp->dcopClient()->appId() << m_host->objId(); m_partProcess->start(); #endif - KStdAction::quit( this, TQT_SLOT( close() ), actionCollection() ); + KStdAction::quit( this, TQ_SLOT( close() ), actionCollection() ); TDESelectAction *s = new TDESelectAction( "http://www.kde.org" , 0, actionCollection(), "location" ); - connect( s, TQT_SIGNAL(activated( const TQString& ) ), this, TQT_SLOT( slotOpenUrl( const TQString & ) ) ); + connect( s, TQ_SIGNAL(activated( const TQString& ) ), this, TQ_SLOT( slotOpenUrl( const TQString & ) ) ); s->setEditable(true); } virtual ~ShellWindow() |