From 692de2d5dc29be2f467ea81cb3d6f77d17a56b83 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 10 Nov 2024 17:13:07 +0900 Subject: Rename KUniqueApplication to TDEUniqueApplication Signed-off-by: Michele Calgaro --- kworldwatch/main.cpp | 4 ++-- kworldwatch/main.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'kworldwatch') 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 +#include #include @@ -69,14 +69,14 @@ private: }; -class WatchApplication : public KUniqueApplication +class WatchApplication : public TDEUniqueApplication { TQ_OBJECT public: - WatchApplication() : KUniqueApplication() {}; + WatchApplication() : TDEUniqueApplication() {}; int newInstance(); -- cgit v1.2.1