diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:12:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-19 22:35:18 +0900 |
commit | 74926683f153c10d642dd7b330e90d1518ccd088 (patch) | |
tree | 502eded77b3da5b3fd9ededd4cd6977ddb2c7003 /kontact/src | |
parent | 79908b3926d6e3b676a34ac23faa43a477f75b65 (diff) | |
download | tdepim-74926683f153c10d642dd7b330e90d1518ccd088.tar.gz tdepim-74926683f153c10d642dd7b330e90d1518ccd088.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kontact/src')
-rw-r--r-- | kontact/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kontact/src/main.cpp b/kontact/src/main.cpp index 576eb48c0..2ec3aa8bd 100644 --- a/kontact/src/main.cpp +++ b/kontact/src/main.cpp @@ -28,7 +28,7 @@ #include <kiconloader.h> #include <tdelocale.h> #include <tdestartupinfo.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <twin.h> #include <kstandarddirs.h> #include <ktrader.h> @@ -49,7 +49,7 @@ static const char description[] = static const char version[] = "1.2.9"; -class KontactApp : public KUniqueApplication { +class KontactApp : public TDEUniqueApplication { public: KontactApp() : mMainWindow( 0 ), mSessionRestored( false ) { @@ -139,7 +139,7 @@ int KontactApp::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(); } int main( int argc, char **argv ) |