diff options
author | Michele Calgaro <[email protected]> | 2024-11-09 22:58:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-20 14:26:15 +0900 |
commit | c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f (patch) | |
tree | f942598c69da9c19df6618f25d16ea9dcbe0a30f /tdepasswd/tdepasswd.cpp | |
parent | 657e8ed6bdc71ab1ae238bdf61a9377cff768e38 (diff) | |
download | tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.tar.gz tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdepasswd/tdepasswd.cpp')
-rw-r--r-- | tdepasswd/tdepasswd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdepasswd/tdepasswd.cpp b/tdepasswd/tdepasswd.cpp index 398d6d6bf..150a2948a 100644 --- a/tdepasswd/tdepasswd.cpp +++ b/tdepasswd/tdepasswd.cpp @@ -8,7 +8,7 @@ #include <config.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdelocale.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> @@ -36,15 +36,15 @@ int main(int argc, char **argv) TDECmdLineArgs::init(argc, argv, &aboutData); TDECmdLineArgs::addCmdLineOptions(options); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); - if (!KUniqueApplication::start()) { + if (!TDEUniqueApplication::start()) { kdDebug() << "tdepasswd is already running" << endl; return 0; } - KUniqueApplication app; + TDEUniqueApplication app; KUser ku; TQString user; |