From 745ea981101b65d60e8e3f7306f2affae72db76c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 9 Nov 2024 22:17:15 +0900 Subject: [PATCH] Rename KUniqueApplication to TDEUniqueApplication Signed-off-by: Michele Calgaro --- KMFIPTInterface/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/KMFIPTInterface/main.cpp b/KMFIPTInterface/main.cpp index f4026dd..fd0c580 100644 --- a/KMFIPTInterface/main.cpp +++ b/KMFIPTInterface/main.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ -#include +#include #include #include #include @@ -46,14 +46,14 @@ int main ( int argc, char *argv[] ) { TDECmdLineArgs::init( argc, argv, &aboutdata ); TDECmdLineArgs::addCmdLineOptions( options ); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); kdDebug() << "Starting up...!" << endl; - if ( ! KUniqueApplication::start() ) { + if ( ! TDEUniqueApplication::start() ) { kdDebug() << "kmfiptinterface is already running!" << endl; return ( 0 ); } - KUniqueApplication app; + TDEUniqueApplication app; kdDebug() << "starting kmfiptinterface " << endl; // This app is started automatically, no need for session management app.dcopClient() ->setAcceptCalls( true );