summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/gdbcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/debugger/gdbcommand.cpp')
-rw-r--r--languages/cpp/debugger/gdbcommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/cpp/debugger/gdbcommand.cpp b/languages/cpp/debugger/gdbcommand.cpp
index b5412dc0..c6c4bbc3 100644
--- a/languages/cpp/debugger/gdbcommand.cpp
+++ b/languages/cpp/debugger/gdbcommand.cpp
@@ -105,7 +105,7 @@ ModifyBreakpointCommand::cmdToSend()
if (bp_->dbgId() > 0)
{
TQString s(initialString());
- s = s.arg(bp_->dbgId()) + "\n";
+ s = s.tqarg(bp_->dbgId()) + "\n";
return s.local8Bit();
}
else