diff options
author | Michele Calgaro <[email protected]> | 2024-11-09 22:19:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-20 14:19:26 +0900 |
commit | 4eda50db5636cc0c9cc4200b44e26196bd986da0 (patch) | |
tree | ff22570d4b2015ef9318064f5571de94bc96a2d7 | |
parent | 35c432764034cca406b87c0d0c1bdcc81e875cea (diff) | |
download | yakuake-4eda50db5636cc0c9cc4200b44e26196bd986da0.tar.gz yakuake-4eda50db5636cc0c9cc4200b44e26196bd986da0.zip |
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | yakuake/src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yakuake/src/main.cpp b/yakuake/src/main.cpp index e28ee58..56698d9 100644 --- a/yakuake/src/main.cpp +++ b/yakuake/src/main.cpp @@ -16,7 +16,7 @@ #include <tdelocale.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <kdebug.h> @@ -43,15 +43,15 @@ int main(int argc, char ** argv) TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions(options); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); - if (!KUniqueApplication::start()) + if (!TDEUniqueApplication::start()) { kdDebug() << "Yakuake is already running!" << endl; return(0); } - KUniqueApplication app; + TDEUniqueApplication app; MainWindow* win = new MainWindow(); win->hide(); |