summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-09 22:08:44 +0900
committerMichele Calgaro <[email protected]>2024-11-20 13:59:52 +0900
commit1a2f1960287d0631023f582e1f634e62108ec516 (patch)
tree2eb73582eae535f3b746f3223c9e129f0f21c6ec
parent263553a0a26c8935df6871ba12d0d3bd8bac4199 (diff)
downloadkpilot-1a2f1960287d0631023f582e1f634e62108ec516.tar.gz
kpilot-1a2f1960287d0631023f582e1f634e62108ec516.zip
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r--kpilot/kpilot.cpp8
-rw-r--r--kpilot/pilotDaemon.cpp8
-rw-r--r--kpilot/pilotDaemonDCOP.h2
3 files changed, 9 insertions, 9 deletions
diff --git a/kpilot/kpilot.cpp b/kpilot/kpilot.cpp
index 9221627..1f67171 100644
--- a/kpilot/kpilot.cpp
+++ b/kpilot/kpilot.cpp
@@ -53,7 +53,7 @@
#include <tdeaction.h>
#include <tdeactionclasses.h>
#include <kstdaction.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <kkeydialog.h>
#include <kedittoolbar.h>
#include <kcmultidialog.h>
@@ -1049,7 +1049,7 @@ int main(int argc, char **argv)
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(kpilotoptions, "kpilot");
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
TDECmdLineArgs *p = TDECmdLineArgs::parsedArgs();
#ifdef DEBUG
@@ -1057,11 +1057,11 @@ int main(int argc, char **argv)
#endif
- if (!KUniqueApplication::start())
+ if (!TDEUniqueApplication::start())
{
return 0;
}
- KUniqueApplication a(true, true);
+ TDEUniqueApplication a(true, true);
if (p->isSet("setup"))
diff --git a/kpilot/pilotDaemon.cpp b/kpilot/pilotDaemon.cpp
index 0493553..f596c00 100644
--- a/kpilot/pilotDaemon.cpp
+++ b/kpilot/pilotDaemon.cpp
@@ -37,7 +37,7 @@
#include <tqtooltip.h>
#include <tqpixmap.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <tdeaboutapplication.h>
#include <tdecmdlineargs.h>
#include <twin.h>
@@ -1330,13 +1330,13 @@ int main(int argc, char **argv)
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(daemonoptions,"kpilotconfig");
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
TDECmdLineArgs *p = TDECmdLineArgs::parsedArgs();
#ifdef DEBUG
KPilotConfig::getDebugLevel(p);
#endif
- if (!KUniqueApplication::start())
+ if (!TDEUniqueApplication::start())
{
if (p->isSet("device")){
// tell the running kpilotDaemon to use
@@ -1353,7 +1353,7 @@ int main(int argc, char **argv)
}
return 0;
}
- KUniqueApplication a(true, true);
+ TDEUniqueApplication a(true, true);
// A block just to keep variables local.
//
diff --git a/kpilot/pilotDaemonDCOP.h b/kpilot/pilotDaemonDCOP.h
index d5709e5..682586a 100644
--- a/kpilot/pilotDaemonDCOP.h
+++ b/kpilot/pilotDaemonDCOP.h
@@ -7,7 +7,7 @@
**
** This file defines the DCOP interface for
** the KPilotDaemon. The daemon has *two* interfaces:
-** one belonging with KUniqueApplication and this one.
+** one belonging with TDEUniqueApplication and this one.
*/
/*