diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:48:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:48:31 +0900 |
commit | 5a0afc9e219fe72a763af031a4b3ce385316f1ea (patch) | |
tree | 88782b366f2f890f3ad7419f43089baaa86fc634 /languages | |
parent | 35a1f253290b150e19e90c4dd3254f51f0d3784c (diff) | |
download | tdevelop-master.tar.gz tdevelop-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages')
-rw-r--r-- | languages/cpp/app_templates/dcopservice/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/dcopservice/main.cpp b/languages/cpp/app_templates/dcopservice/main.cpp index cf1d3ae6..2e7f3722 100644 --- a/languages/cpp/app_templates/dcopservice/main.cpp +++ b/languages/cpp/app_templates/dcopservice/main.cpp @@ -1,6 +1,6 @@ %{CPP_TEMPLATE} -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> #include <kdebug.h> @@ -28,15 +28,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() << "%{APPNAMELC} is already running!" << endl; return (0); } - KUniqueApplication app; + TDEUniqueApplication app; kdDebug() << "starting %{APPNAMELC} " << endl; // This app is started automatically, no need for session management app.disableSessionManagement(); |