summaryrefslogtreecommitdiffstats
path: root/certmanager
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager')
-rw-r--r--certmanager/certificatewizardimpl.cpp2
-rw-r--r--certmanager/kwatchgnupg/main.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/certmanager/certificatewizardimpl.cpp b/certmanager/certificatewizardimpl.cpp
index f5dd08ad..ae14bf36 100644
--- a/certmanager/certificatewizardimpl.cpp
+++ b/certmanager/certificatewizardimpl.cpp
@@ -442,7 +442,7 @@ void CertificateWizardImpl::sendCertificate( const TQString& email, const TQByte
// OK, so kmail (or kontact) is running. Now ensure the object we want is available.
// [that's not the case when kontact was already running, but kmail not loaded into it... in theory.]
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 ) {
Q_ASSERT( kapp->dcopClient()->findObject( dcopService, dcopObjectId, "", TQByteArray(), dummy, dummy ) );
diff --git a/certmanager/kwatchgnupg/main.cpp b/certmanager/kwatchgnupg/main.cpp
index 975b45c7..b9f6237a 100644
--- a/certmanager/kwatchgnupg/main.cpp
+++ b/certmanager/kwatchgnupg/main.cpp
@@ -37,7 +37,7 @@
#include "aboutdata.h"
#include "kwatchgnupgmainwin.h"
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <tdecmdlineargs.h>
#include <tdemessagebox.h>
#include <tdelocale.h>
@@ -45,7 +45,7 @@
#include <kiconloader.h>
#include <kdebug.h>
-class KWatchGnuPGApplication : public KUniqueApplication {
+class KWatchGnuPGApplication : public TDEUniqueApplication {
public:
KWatchGnuPGApplication();
~KWatchGnuPGApplication();
@@ -55,7 +55,7 @@ private:
};
KWatchGnuPGApplication::KWatchGnuPGApplication()
- : KUniqueApplication(), mMainWin(0)
+ : TDEUniqueApplication(), mMainWin(0)
{
}
@@ -71,7 +71,7 @@ int KWatchGnuPGApplication::newInstance()
setMainWidget( mMainWin );
}
mMainWin->show();
- return KUniqueApplication::newInstance();
+ return TDEUniqueApplication::newInstance();
}
int main( int argc, char** argv )