summaryrefslogtreecommitdiffstats
path: root/kdbg/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/main.cpp')
-rw-r--r--kdbg/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdbg/main.cpp b/kdbg/main.cpp
index 0f067e3..1e188f0 100644
--- a/kdbg/main.cpp
+++ b/kdbg/main.cpp
@@ -88,12 +88,12 @@ int main(int argc, char** argv)
// handle options
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
- QString transcript = args->getOption("t");
- QString remote = args->getOption("r");
+ TQString transcript = args->getOption("t");
+ TQString remote = args->getOption("r");
if (!remote.isEmpty())
debugger->setRemoteDevice(remote);
- QString lang = args->getOption("l");
+ TQString lang = args->getOption("l");
// deprecated option; overrides -l
if (args->isSet("x")){
@@ -107,8 +107,8 @@ int main(int argc, char** argv)
}
debugger->setTranscript(transcript);
- QString pid = args->getOption("p");
- QString programArgs = args->getOption("a");
+ TQString pid = args->getOption("p");
+ TQString programArgs = args->getOption("a");
if (!restored && args->count() > 0) {
// attach to process?
@@ -125,8 +125,8 @@ int main(int argc, char** argv)
TRACE("cannot start debugger");
KMessageBox::error(debugger, i18n("Cannot start debugger."));
- debugger->setCoreFile(QString());
- debugger->setAttachPid(QString());
+ debugger->setCoreFile(TQString());
+ debugger->setAttachPid(TQString());
} else {
if (!programArgs.isEmpty()) {
debugger->overrideProgramArguments(programArgs);