diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:18 +0900 |
commit | fcf98b70b8664d991f5c31062aba4947d404ed41 (patch) | |
tree | 74cc56c6a97749a357137aeab4dc9243a1f60d40 /kgpg | |
parent | 9223e1c194eea392ce07a7909afcc2e3b3713c95 (diff) | |
download | tdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.tar.gz tdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kgpg')
-rw-r--r-- | kgpg/kgpg.cpp | 2 | ||||
-rw-r--r-- | kgpg/kgpg.h | 6 | ||||
-rw-r--r-- | kgpg/main.cpp | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/kgpg/kgpg.cpp b/kgpg/kgpg.cpp index 359644e..b48794f 100644 --- a/kgpg/kgpg.cpp +++ b/kgpg/kgpg.cpp @@ -909,7 +909,7 @@ kgpgapplet::~kgpgapplet() } KgpgAppletApp::KgpgAppletApp() - : KUniqueApplication()//, kgpg_applet( 0 ) + : TDEUniqueApplication()//, kgpg_applet( 0 ) { running=false; diff --git a/kgpg/kgpg.h b/kgpg/kgpg.h index 409f92b..2ce6008 100644 --- a/kgpg/kgpg.h +++ b/kgpg/kgpg.h @@ -24,7 +24,7 @@ #include <tdeaction.h> #include <ksystemtray.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <kurl.h> #include <tdeshortcut.h> @@ -119,7 +119,7 @@ signals: void importedKeys(TQStringList); }; -class kgpgapplet : public KSystemTray//KUniqueApplication +class kgpgapplet : public KSystemTray//TDEUniqueApplication { TQ_OBJECT @@ -143,7 +143,7 @@ private slots: class TDECmdLineArgs; -class KgpgAppletApp : public KUniqueApplication +class KgpgAppletApp : public TDEUniqueApplication { TQ_OBJECT diff --git a/kgpg/main.cpp b/kgpg/main.cpp index 73b99bf..7ef747b 100644 --- a/kgpg/main.cpp +++ b/kgpg/main.cpp @@ -21,7 +21,7 @@ #include <tdemessagebox.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <dcopclient.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> @@ -54,12 +54,12 @@ int main(int argc, char *argv[]) about.addAuthor( "Jean-Baptiste Mardelle", 0, "bj@altern.org" ); TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions(options); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); //KMessageBox::sorry(0,"nombre: "+TQString::number(i)); - if (!KUniqueApplication::start()) + if (!TDEUniqueApplication::start()) return 0; //KgpgAppletApp *app; @@ -69,7 +69,7 @@ int main(int argc, char *argv[]) /* - KUniqueApplication app; + TDEUniqueApplication app; // register ourselves as a dcop client //app.dcopClient()->registerAs(app.name(), false); |