diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-05 13:41:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-19 22:55:15 +0900 |
commit | 09d880cffc92aaa038a909b5e474a5f85784d4ef (patch) | |
tree | 40c5c26373ecda2e34b24d6fc70c8fe9bb9a51f5 | |
parent | 20e4fa8981cb1f1317ff9ccc3398915bb95c6693 (diff) | |
download | tdesdk-09d880cffc92aaa038a909b5e474a5f85784d4ef.tar.gz tdesdk-09d880cffc92aaa038a909b5e474a5f85784d4ef.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kbabel/kbabel/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kbabel/kbabel/main.cpp b/kbabel/kbabel/main.cpp index a6282e83..cf6b8b4a 100644 --- a/kbabel/kbabel/main.cpp +++ b/kbabel/kbabel/main.cpp @@ -46,7 +46,7 @@ #include <kcursor.h> #include <tdelocale.h> #include <tdemessagebox.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <twin.h> #include <tqfile.h> @@ -87,7 +87,7 @@ private: }; -class KBabelApp : public KUniqueApplication +class KBabelApp : public TDEUniqueApplication { public: KBabelApp(); @@ -100,7 +100,7 @@ private: }; KBabelApp::KBabelApp() - : KUniqueApplication() + : TDEUniqueApplication() { kbInterface = new KBabelInterface; } @@ -593,10 +593,10 @@ int main(int argc, char **argv) TDECmdLineArgs::addCmdLineOptions( options ); // Add options from other components - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); - if(!KUniqueApplication::start()) + if(!TDEUniqueApplication::start()) { return 0; } |