diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:18:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:18:14 +0900 |
commit | aee040aeb294671599cbd7877ddc2ea2585460b5 (patch) | |
tree | ee958b22bdc092af122bdacd95190369f2c2504b | |
parent | 1a1489637a570d0019f23c7e46343f2faec2c35a (diff) | |
download | kshutdown-aee040aeb294671599cbd7877ddc2ea2585460b5.tar.gz kshutdown-aee040aeb294671599cbd7877ddc2ea2585460b5.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kshutdown/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kshutdown/main.cpp b/kshutdown/main.cpp index a8e34eb..21e42e6 100644 --- a/kshutdown/main.cpp +++ b/kshutdown/main.cpp @@ -30,7 +30,7 @@ #include <tdecmdlineargs.h> #include <tdelocale.h> #include <tdemessagebox.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> // 0.1.x, 0.3.x, etc - Unstable, Beta // 0.2.x, 0.4.x, etc - Stable @@ -75,14 +75,14 @@ static TDECmdLineOptions options[] = }; /** @short KShutDown application. */ -class KShutDownApplication: public KUniqueApplication +class KShutDownApplication: public TDEUniqueApplication { public: /** * Constructor. */ KShutDownApplication() - : KUniqueApplication(), + : TDEUniqueApplication(), _confirm(false), isTimeArg(false), now(false), @@ -382,7 +382,7 @@ int main(int argc, char **argv) TDECmdLineArgs::init(argc, argv, &aboutData); TDECmdLineArgs::addCmdLineOptions(options); - if (!KUniqueApplication::start()) + if (!TDEUniqueApplication::start()) return 0; // init application |