diff options
Diffstat (limited to 'kmail')
-rw-r--r-- | kmail/kmstartup.cpp | 2 | ||||
-rw-r--r-- | kmail/korghelper.cpp | 2 | ||||
-rw-r--r-- | kmail/main.cpp | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/kmail/kmstartup.cpp b/kmail/kmstartup.cpp index c1eb6ccb4..888e4e192 100644 --- a/kmail/kmstartup.cpp +++ b/kmail/kmstartup.cpp @@ -193,7 +193,7 @@ void lockOrDie() { if ( oldHostName == hostName ) { // this can only happen if the user is running this application on // different displays on the same machine. All other cases will be - // taken care of by KUniqueApplication() + // taken care of by TDEUniqueApplication() if ( oldAppName == appName ) msg = i18n("%1 already seems to be running on another display on " "this machine. Running %2 more than once " diff --git a/kmail/korghelper.cpp b/kmail/korghelper.cpp index 17097126b..cace2a102 100644 --- a/kmail/korghelper.cpp +++ b/kmail/korghelper.cpp @@ -36,7 +36,7 @@ void KMail::KorgHelper::ensureRunning() static const char* const dcopObjectId = "KOrganizerIface"; TQCString dummy; if ( !kapp->dcopClient()->findObject( dcopService, dcopObjectId, "", TQByteArray(), dummy, dummy ) ) { - DCOPRef ref( dcopService, dcopService ); // talk to the KUniqueApplication or its kontact wrapper + DCOPRef ref( dcopService, dcopService ); // talk to the TDEUniqueApplication or its kontact wrapper DCOPReply reply = ref.call( "load()" ); if ( reply.isValid() && (bool)reply ) { kdDebug() << "Loaded " << dcopService << " successfully" << endl; diff --git a/kmail/main.cpp b/kmail/main.cpp index 8b40e555e..fe5dee0a6 100644 --- a/kmail/main.cpp +++ b/kmail/main.cpp @@ -19,7 +19,7 @@ */ #include <config.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdeglobal.h> #include <knotifyclient.h> #include <dcopclient.h> @@ -36,10 +36,10 @@ //----------------------------------------------------------------------------- -class KMailApplication : public KUniqueApplication +class KMailApplication : public TDEUniqueApplication { public: - KMailApplication() : KUniqueApplication() { }; + KMailApplication() : TDEUniqueApplication() { }; virtual int newInstance(); void commitData(TQSessionManager& sm); @@ -66,7 +66,7 @@ int KMailApplication::newInstance() int main(int argc, char *argv[]) { - // WABA: KMail is a KUniqueApplication. Unfortunately this makes debugging + // WABA: KMail is a TDEUniqueApplication. Unfortunately this makes debugging // a bit harder: You should pass --nofork as commandline argument when using // a debugger. In gdb you can do this by typing "set args --nofork" before // typing "run". |