From f0b641b9e163a2173e944ac86bc86e91668336c7 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 9 Nov 2024 22:08:34 +0900 Subject: [PATCH] Rename KUniqueApplication to TDEUniqueApplication Signed-off-by: Michele Calgaro --- koshell/koshell_main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koshell/koshell_main.cpp b/koshell/koshell_main.cpp index e816cd9e1..211097b4f 100644 --- a/koshell/koshell_main.cpp +++ b/koshell/koshell_main.cpp @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -33,7 +33,7 @@ static const char* description = I18N_NOOP("KOffice Workspace"); static const char* version = KOFFICE_VERSION_STRING; -class KoShellApp : public KUniqueApplication { +class KoShellApp : public TDEUniqueApplication { public: KoShellApp() : mMainWindow( 0 ) {} ~KoShellApp() {} @@ -64,7 +64,7 @@ int KoShellApp::newInstance() } // Handle startup notification and window activation // (The first time it will do nothing except note that it was called) - return KUniqueApplication::newInstance(); + return TDEUniqueApplication::newInstance(); } extern "C" KOSHELL_EXPORT int kdemain( int argc, char **argv )