summaryrefslogtreecommitdiffstats
path: root/certmanager
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-10 17:12:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-19 22:35:18 +0900
commit74926683f153c10d642dd7b330e90d1518ccd088 (patch)
tree502eded77b3da5b3fd9ededd4cd6977ddb2c7003 /certmanager
parent79908b3926d6e3b676a34ac23faa43a477f75b65 (diff)
downloadtdepim-master.tar.gz
tdepim-master.zip
Rename KUniqueApplication to TDEUniqueApplicationHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 f5dd08adc..ae14bf36d 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 975b45c74..b9f6237a9 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 )