summaryrefslogtreecommitdiffstats
path: root/korn
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-10 17:12:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-19 22:35:18 +0900
commit74926683f153c10d642dd7b330e90d1518ccd088 (patch)
tree502eded77b3da5b3fd9ededd4cd6977ddb2c7003 /korn
parent79908b3926d6e3b676a34ac23faa43a477f75b65 (diff)
downloadtdepim-74926683f153c10d642dd7b330e90d1518ccd088.tar.gz
tdepim-74926683f153c10d642dd7b330e90d1518ccd088.zip
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'korn')
-rw-r--r--korn/kornapp.h6
-rw-r--r--korn/main.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/korn/kornapp.h b/korn/kornapp.h
index 9ef87f2f..03f7ae4b 100644
--- a/korn/kornapp.h
+++ b/korn/kornapp.h
@@ -5,7 +5,7 @@
#ifndef SSK_KORNAPP_H
#define SSK_KORNAPP_H
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
class KornShell;
@@ -14,7 +14,7 @@ class KornShell;
* @author Sirtaj Singh Kang (taj@kde.org)
* @version $Id$
*/
-class KornApp : public KUniqueApplication
+class KornApp : public TDEUniqueApplication
{
TQ_OBJECT
@@ -23,7 +23,7 @@ public:
/**
* KornApp Constructor
*/
- KornApp() : KUniqueApplication(), _shell( 0 ), _instanceCount( 0 ) {}
+ KornApp() : TDEUniqueApplication(), _shell( 0 ), _instanceCount( 0 ) {}
/**
* KornApp Destructor
diff --git a/korn/main.cpp b/korn/main.cpp
index f3e8cf9a..9efbc369 100644
--- a/korn/main.cpp
+++ b/korn/main.cpp
@@ -28,9 +28,9 @@ int main(int argc, char *argv[])
aboutData.addAuthor("Mart Kelder",0,"mart@kelder31.nl");
TDECmdLineArgs::init( argc, argv, &aboutData );
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
- if( !KUniqueApplication::start() ) {
+ if( !TDEUniqueApplication::start() ) {
// Already running. Should pop up the preferences dialog
return 0;
}