diff options
author | Michele Calgaro <[email protected]> | 2024-11-09 22:17:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-20 14:03:07 +0900 |
commit | a93b9c4a6954f739651bdd3796fbb2a0ca2404ab (patch) | |
tree | 69fb7caf6f25b1b6d4e912ff7a9d3e5b712f9355 | |
parent | 083fec73f18d5c43091703b64ef862b3e22c36f7 (diff) | |
download | kkbswitch-a93b9c4a6954f739651bdd3796fbb2a0ca2404ab.tar.gz kkbswitch-a93b9c4a6954f739651bdd3796fbb2a0ca2404ab.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kkbswitch/kbswitchapp.h | 4 | ||||
-rw-r--r-- | kkbswitch/main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kkbswitch/kbswitchapp.h b/kkbswitch/kbswitchapp.h index bcd8a7b..1bbad28 100644 --- a/kkbswitch/kbswitchapp.h +++ b/kkbswitch/kbswitchapp.h @@ -23,7 +23,7 @@ #endif #include <tdeversion.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> //#include <tqmap.h> @@ -47,7 +47,7 @@ typedef TQMap<WId, KBWinInfo> KBWindowMap;*/ *@author Leonid Zeitlin */ -class KBSwitchApp : public KUniqueApplication { +class KBSwitchApp : public TDEUniqueApplication { TQ_OBJECT public: KBSwitchApp(); diff --git a/kkbswitch/main.cpp b/kkbswitch/main.cpp index aa209fe..6977b1c 100644 --- a/kkbswitch/main.cpp +++ b/kkbswitch/main.cpp @@ -53,7 +53,7 @@ int main(int argc, char *argv[]) TDECmdLineArgs::init( argc, argv, &aboutData ); TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. - if (!KUniqueApplication::start()) // starting a second instance - just exit + if (!TDEUniqueApplication::start()) // starting a second instance - just exit exit(0); KBSwitchApp a; |