summaryrefslogtreecommitdiffstats
path: root/koshell/koshell_main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-09 22:08:34 +0900
committerMichele Calgaro <[email protected]>2024-11-09 22:08:34 +0900
commitf0b641b9e163a2173e944ac86bc86e91668336c7 (patch)
tree6f9749bb75d4ed05e27a4e1193829a84dab50b3a /koshell/koshell_main.cpp
parent711bc37ccf43857b011f4d9d3dc92e12e3f9b785 (diff)
downloadkoffice-f0b641b9e163a2173e944ac86bc86e91668336c7.tar.gz
koffice-f0b641b9e163a2173e944ac86bc86e91668336c7.zip
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'koshell/koshell_main.cpp')
-rw-r--r--koshell/koshell_main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/koshell/koshell_main.cpp b/koshell/koshell_main.cpp
index e816cd9e..211097b4 100644
--- a/koshell/koshell_main.cpp
+++ b/koshell/koshell_main.cpp
@@ -23,7 +23,7 @@
#include <tdecmdlineargs.h>
#include <kdebug.h>
#include <tdelocale.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <twin.h>
#include <KoGlobal.h>
@@ -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 )