summaryrefslogtreecommitdiffstats
path: root/servers/auth_server_lin/src
diff options
context:
space:
mode:
Diffstat (limited to 'servers/auth_server_lin/src')
-rw-r--r--servers/auth_server_lin/src/Makefile.am2
-rw-r--r--servers/auth_server_lin/src/auth_conn.cpp2
-rw-r--r--servers/auth_server_lin/src/main.cpp18
3 files changed, 11 insertions, 11 deletions
diff --git a/servers/auth_server_lin/src/Makefile.am b/servers/auth_server_lin/src/Makefile.am
index 2da637d..45aeba8 100644
--- a/servers/auth_server_lin/src/Makefile.am
+++ b/servers/auth_server_lin/src/Makefile.am
@@ -6,6 +6,6 @@ bin_PROGRAMS = remotefpga_authserver
remotefpga_authserver_SOURCES = main.cpp auth_conn.cpp
remotefpga_authserver_METASOURCES = AUTO
-remotefpga_authserver_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor -ltdekrbsocket -ltqtrla
+remotefpga_authserver_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -ltdekrbsocket -ltqtrla
KDE_OPTIONS = nofinal
diff --git a/servers/auth_server_lin/src/auth_conn.cpp b/servers/auth_server_lin/src/auth_conn.cpp
index 2833fc6..52f950a 100644
--- a/servers/auth_server_lin/src/auth_conn.cpp
+++ b/servers/auth_server_lin/src/auth_conn.cpp
@@ -692,7 +692,7 @@ AuthServer::AuthServer(TQObject* parent) :
}
m_serverID = 0;
- KCmdLineArgs* const args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs* const args = TDECmdLineArgs::parsedArgs();
if ((args) && (args->count() > 0)) {
m_serverID = TQString(args->arg(0)).toInt();
}
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();