summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6b587e5..88a9e83 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -16,7 +16,7 @@
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
static const char *description =
I18N_NOOP("A small CPU usage meter for Kicker (the TDE panel).");
@@ -51,14 +51,14 @@ int main(int argc, char **argv) {
"being supportive and helpful!");
TDECmdLineArgs::init(argc, argv, &aboutData);
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
- if (! KUniqueApplication::start()) {
+ if (! TDEUniqueApplication::start()) {
fprintf(stderr, I18N_NOOP("KCPULoad is already running!\n"));
return 1;
}
- KUniqueApplication app;
+ TDEUniqueApplication app;
app.setMainWidget(new KCPULoad());
return app.exec();
}