From 30b277cd5b833f7a4794b4d2433cfb5031e6b145 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 9 Nov 2024 22:20:10 +0900 Subject: [PATCH] Rename KUniqueApplication to TDEUniqueApplication Signed-off-by: Michele Calgaro --- src/ksensorscfg.cpp | 1 - src/main.cpp | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ksensorscfg.cpp b/src/ksensorscfg.cpp index 4e41307..3436d73 100644 --- a/src/ksensorscfg.cpp +++ b/src/ksensorscfg.cpp @@ -31,7 +31,6 @@ #include #include -#include #include "lmsensors.h" #include "sensorslist.h" #include "generalcfg.h" diff --git a/src/main.cpp b/src/main.cpp index 1504484..ca1972f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ #include #include -#include +#include #include "ksensorssplash.h" #include "lmsensorsdock.h" @@ -47,15 +47,15 @@ int main(int argc, char *argv[]) TDECmdLineArgs::init( argc, argv, &aboutData ); TDECmdLineArgs::addCmdLineOptions( options ); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); bool noDock= !args->isSet("dock"); bool showSplash= args->isSet("splash"); args->clear(); - if(!KUniqueApplication::start()) return 0; - KUniqueApplication a; + if(!TDEUniqueApplication::start()) return 0; + TDEUniqueApplication a; // We handle autostart via standard autostart-enabled .desktop file instead of the session a.disableSessionManagement();