diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-08 22:42:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-20 13:23:48 +0900 |
commit | d483afcd3a04ad29990c10507bd23265eaddff14 (patch) | |
tree | 5ef27603b473ab26235ce7cbedcaa150e01c7bea /src/tdesvnd | |
parent | 4f136aa915bcbf7995eb09cf9938b939c01058d1 (diff) | |
download | tdesvn-master.tar.gz tdesvn-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tdesvnd')
-rw-r--r-- | src/tdesvnd/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tdesvnd/main.cpp b/src/tdesvnd/main.cpp index 9d42152..47b52ac 100644 --- a/src/tdesvnd/main.cpp +++ b/src/tdesvnd/main.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> #include <kdebug.h> @@ -48,15 +48,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() << "tdesvnd is already running!" << endl; return (0); } - KUniqueApplication app; + TDEUniqueApplication app; kdDebug() << "starting tdesvnd_dcop " << endl; // This app is started automatically, no need for session management app.disableSessionManagement(); |