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 #include #include -#include +#include #include #include #include @@ -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 #include -#include +#include #include #include #include @@ -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. */ /*