summaryrefslogtreecommitdiffstats
path: root/servers/auth_server_lin/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'servers/auth_server_lin/src/main.cpp')
-rw-r--r--servers/auth_server_lin/src/main.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/servers/auth_server_lin/src/main.cpp b/servers/auth_server_lin/src/main.cpp
index a4b233a..0bdb21e 100644
--- a/servers/auth_server_lin/src/main.cpp
+++ b/servers/auth_server_lin/src/main.cpp
@@ -39,7 +39,7 @@
#include "auth_conn.h"
-static const KCmdLineOptions options[] =
+static const TDECmdLineOptions options[] =
{
{ "+[id]", I18N_NOOP( "Set server id to 'id'" ), 0 },
{ 0, 0, 0 }
@@ -51,17 +51,17 @@ static const char version[] = "v0.0.1";
int main(int argc, char *argv[])
{
- KAboutData aboutData( "remotefpga_auth_server", I18N_NOOP("RemoteFPGA AuthServer"),
- version, description, KAboutData::License_GPL,
- "(c) 2012, Timothy Pearson");
+ TDEAboutData aboutData( "remotefpga_auth_server", I18N_NOOP("RemoteFPGA AuthServer"),
+ version, description, TDEAboutData::License_GPL,
+ "(c) 2012-2013, Timothy Pearson");
aboutData.addAuthor("Timothy Pearson",0, "kb9vqf@pearsoncomputing.net");
- KCmdLineArgs::init( argc, argv, &aboutData );
- KCmdLineArgs::addCmdLineOptions(options);
- KApplication::disableAutoDcopRegistration();
+ TDECmdLineArgs::init( argc, argv, &aboutData );
+ TDECmdLineArgs::addCmdLineOptions(options);
+ TDEApplication::disableAutoDcopRegistration();
- KApplication app(false, false);
+ TDEApplication app(false, false);
- KStartupInfo::appStarted();
+ TDEStartupInfo::appStarted();
AuthServer authsvr(0);
return app.exec();