diff options
author | Michele Calgaro <[email protected]> | 2024-11-09 22:19:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-09 22:19:41 +0900 |
commit | e248561db8601ed1f06790f8c94408c0d15dec23 (patch) | |
tree | ec090c0143e9d5a391fd0e50cde53b4f04384635 | |
parent | e92e39565b8a5ba70179fa398f5d4df7eeb44ee2 (diff) | |
download | keep-e248561db8601ed1f06790f8c94408c0d15dec23.tar.gz keep-e248561db8601ed1f06790f8c94408c0d15dec23.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | keep/app/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keep/app/main.cpp b/keep/app/main.cpp index d436d1d..3b32f04 100644 --- a/keep/app/main.cpp +++ b/keep/app/main.cpp @@ -20,7 +20,7 @@ #include <tdecmdlineargs.h> #include <twin.h> #include <tdeaboutdata.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <kdebug.h> #include "keepmainwindow.h" @@ -39,15 +39,15 @@ int main(int argc, char **argv) aboutData.addCredit("auxsvr", I18N_NOOP("Useful patches")); TDECmdLineArgs::init( argc, argv, &aboutData ); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); - if ( !KUniqueApplication::start() ) + if ( !TDEUniqueApplication::start() ) { kdDebug() << "Already running, exiting." << endl; return 0; } - KUniqueApplication app; + TDEUniqueApplication app; app.disableSessionManagement(); KeepMainWindow *keep = new KeepMainWindow( 0, "keep" ); |