diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:17:15 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:17:15 +0900 |
commit | 745ea981101b65d60e8e3f7306f2affae72db76c (patch) | |
tree | aed4545527470bf8389c3e5b2312c83680f16880 /KMFIPTInterface | |
parent | 60ac731f512aed0b62a7497af8cd00f4c28fa950 (diff) | |
download | kmyfirewall-745ea981101b65d60e8e3f7306f2affae72db76c.tar.gz kmyfirewall-745ea981101b65d60e8e3f7306f2affae72db76c.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'KMFIPTInterface')
-rw-r--r-- | KMFIPTInterface/main.cpp | 8 |
1 files 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 <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <tdeaboutdata.h> #include <tdecmdlineargs.h> #include <kdebug.h> @@ -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 ); |