summaryrefslogtreecommitdiffstats
path: root/kontact/interfaces/uniqueapphandler.cpp
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 /kontact/interfaces/uniqueapphandler.cpp
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 'kontact/interfaces/uniqueapphandler.cpp')
-rw-r--r--kontact/interfaces/uniqueapphandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kontact/interfaces/uniqueapphandler.cpp b/kontact/interfaces/uniqueapphandler.cpp
index 2ad0f638..904089ca 100644
--- a/kontact/interfaces/uniqueapphandler.cpp
+++ b/kontact/interfaces/uniqueapphandler.cpp
@@ -28,7 +28,7 @@
#include <dcopclient.h>
#include <kdebug.h>
#include <tdelocale.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
/*
Test plan for the various cases of interaction between standalone apps and kontact:
@@ -78,7 +78,7 @@ using namespace Kontact;
int UniqueAppHandler::newInstance()
{
- // This bit is duplicated from KUniqueApplication::newInstance()
+ // This bit is duplicated from TDEUniqueApplication::newInstance()
if ( kapp->mainWidget() ) {
kapp->mainWidget()->show();
KWin::forceActiveWindow( kapp->mainWidget()->winId() );
@@ -99,7 +99,7 @@ bool UniqueAppHandler::process( const TQCString &fun, const TQByteArray &data,
TDECmdLineArgs::reset(); // forget options defined by other "applications"
loadCommandLineOptions(); // implemented by plugin
- // This bit is duplicated from KUniqueApplication::processDelayed()
+ // This bit is duplicated from TDEUniqueApplication::processDelayed()
TQDataStream ds( data, IO_ReadOnly );
TDECmdLineArgs::loadAppArgs( ds );
if ( !ds.atEnd() ) { // backwards compatibility
@@ -196,7 +196,7 @@ static TDECmdLineOptions options[] =
void Kontact::UniqueAppHandler::loadKontactCommandLineOptions()
{
TDECmdLineArgs::addCmdLineOptions( options );
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
TDEApplication::addCmdLineOptions();
}