diff options
Diffstat (limited to 'xparts/mozilla/kmozillapart.cpp')
-rw-r--r-- | xparts/mozilla/kmozillapart.cpp | 8 |
1 files changed, 4 insertions, 4 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() |