summaryrefslogtreecommitdiffstats
path: root/src/tdebluezauth/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tdebluezauth/main.cpp')
-rw-r--r--src/tdebluezauth/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tdebluezauth/main.cpp b/src/tdebluezauth/main.cpp
index f8adeca..086aaa9 100644
--- a/src/tdebluezauth/main.cpp
+++ b/src/tdebluezauth/main.cpp
@@ -27,7 +27,7 @@
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <tdemessagebox.h>
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <iostream>
#include "application.h"
@@ -52,9 +52,9 @@ int main(int argc, char *argv[])
aboutData.addAuthor("Emanoil Kotsev", I18N_NOOP("Bluez5 and port to TDE"), "deloptes@gmail.com");
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options );
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
- if (!KUniqueApplication::start())
+ if (!TDEUniqueApplication::start())
{
std::cerr << i18n("TDEBluezAuth is already running.\n").local8Bit();
return 0;
@@ -66,7 +66,7 @@ int main(int argc, char *argv[])
{
KMessageBox::error(NULL,i18n("Can't connect to DBus!\nUnable to start tdebluezauth.\n\n"
"Restart dbus and the bluetooth service"));
- KUniqueApplication::kApplication()->quit();
+ TDEUniqueApplication::kApplication()->quit();
return -1;
}
else