summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-09 22:19:32 +0900
committerMichele Calgaro <[email protected]>2024-11-09 22:19:32 +0900
commita2887c4527d806a02cd373a57d48c332a1ed587c (patch)
tree5917efae8089be99dbc68f100e0adae2e3549a1d /src/main.cpp
parent85843fdfd167935ef866dad7f8baa3196564c0de (diff)
downloadkcpuload-master.tar.gz
kcpuload-master.zip
Rename KUniqueApplication to TDEUniqueApplicationHEADmaster
Signed-off-by: Michele Calgaro <[email protected]>
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();
}