diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:12:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-19 22:35:18 +0900 |
commit | 74926683f153c10d642dd7b330e90d1518ccd088 (patch) | |
tree | 502eded77b3da5b3fd9ededd4cd6977ddb2c7003 /certmanager/kwatchgnupg/main.cpp | |
parent | 79908b3926d6e3b676a34ac23faa43a477f75b65 (diff) | |
download | tdepim-74926683f153c10d642dd7b330e90d1518ccd088.tar.gz tdepim-74926683f153c10d642dd7b330e90d1518ccd088.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'certmanager/kwatchgnupg/main.cpp')
-rw-r--r-- | certmanager/kwatchgnupg/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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 ) |