diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:07 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:07 +0900 |
commit | 692de2d5dc29be2f467ea81cb3d6f77d17a56b83 (patch) | |
tree | 897f5cbcfa6ba39fec031b76f7ad6343f1abadd2 /kworldwatch | |
parent | 2feacbb6d3c60a1863754cd3f07597e94714fd0e (diff) | |
download | tdetoys-692de2d5dc29be2f467ea81cb3d6f77d17a56b83.tar.gz tdetoys-692de2d5dc29be2f467ea81cb3d6f77d17a56b83.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kworldwatch')
-rw-r--r-- | kworldwatch/main.cpp | 4 | ||||
-rw-r--r-- | kworldwatch/main.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kworldwatch/main.cpp b/kworldwatch/main.cpp index 5f8df3b..3195d55 100644 --- a/kworldwatch/main.cpp +++ b/kworldwatch/main.cpp @@ -178,7 +178,7 @@ int main(int argc, char *argv[]) TDEAboutData about("kworldclock", I18N_NOOP("TDE World Clock"), "1.5"); TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions(options); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("themes")) @@ -188,7 +188,7 @@ int main(int argc, char *argv[]) return 0; } - if (!KUniqueApplication::start()) + if (!TDEUniqueApplication::start()) return 0; WatchApplication app; diff --git a/kworldwatch/main.h b/kworldwatch/main.h index 5069480..7ef2792 100644 --- a/kworldwatch/main.h +++ b/kworldwatch/main.h @@ -29,7 +29,7 @@ /* ** Bug reports and questions can be sent to kde-devel@kde.org */ -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdemainwindow.h> @@ -69,14 +69,14 @@ private: }; -class WatchApplication : public KUniqueApplication +class WatchApplication : public TDEUniqueApplication { TQ_OBJECT public: - WatchApplication() : KUniqueApplication() {}; + WatchApplication() : TDEUniqueApplication() {}; int newInstance(); |