summaryrefslogtreecommitdiffstats
path: root/kworldwatch
diff options
context:
space:
mode:
Diffstat (limited to 'kworldwatch')
-rw-r--r--kworldwatch/main.cpp4
-rw-r--r--kworldwatch/main.h6
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();