summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 95f901a..e899348 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -29,7 +29,7 @@
#include "kooldock.h"
#define KOOLDOCK_VERSION "0.4.7"
-QString argv0;
+TQString argv0;
#ifndef _ENABLE_DEBUG
extern "C"
@@ -57,7 +57,7 @@ static KCmdLineOptions options[] =
int main(int argc, char *argv[])
{
- argv0=QString("%1").arg(argv[0]);
+ argv0=TQString("%1").arg(argv[0]);
KAboutData aboutData( "kooldock", I18N_NOOP("KoolDock"),
KOOLDOCK_VERSION, description, KAboutData::License_GPL,
@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
#ifndef _ENABLE_DEBUG
KUniqueApplication::addCmdLineOptions();
#endif
- if (QString("%1").arg(argv[1])=="-kill" || QString("%1").arg(argv[1])=="-k")
+ if (TQString("%1").arg(argv[1])=="-kill" || TQString("%1").arg(argv[1])=="-k")
{
system("killall kooldock");
exit(0);
@@ -109,6 +109,6 @@ int main(int argc, char *argv[])
#endif
kooldock->setMainPath(argv0);
- kooldock->setArgs(QString("%1").arg(argv[1]));
+ kooldock->setArgs(TQString("%1").arg(argv[1]));
return a.exec();
}