summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-09 22:18:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-20 14:19:00 +0900
commit9f50be1eeb5d5acc694c2ed1220405d9a8d6d69b (patch)
treedd2b62f6bc645a8027d0152063d3ea670f61457d
parent490fe1ee3629eb58f5f7291495a1df51c14adc85 (diff)
downloadtdepowersave-9f50be1eeb5d5acc694c2ed1220405d9a8d6d69b.tar.gz
tdepowersave-9f50be1eeb5d5acc694c2ed1220405d9a8d6d69b.zip
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 624e745..a2693d2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -24,7 +24,7 @@
#endif
#include "tdepowersave.h"
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
@@ -74,16 +74,16 @@ int kdemain(int argc, char **argv)
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions (options);
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
- if (!KUniqueApplication::start()) {
+ if (!TDEUniqueApplication::start()) {
fprintf(stderr, "TDEPowersave is already running!\n");
exit(0);
}
- KUniqueApplication app;
+ TDEUniqueApplication app;
app.disableSessionManagement();
tdepowersave *mainWin = 0;