Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
6723f92a
Commit
6723f92a
authored
Dec 15, 2010
by
Christian Kandeler
Browse files
Maemo: Fix remote debugging.
Was broken by
1e362b0f
.
parent
ee6bf38e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/remotegdbprocess.cpp
View file @
6723f92a
...
...
@@ -144,7 +144,7 @@ void RemoteGdbProcess::handleAppOutputReaderStarted()
connect
(
m_appOutputReader
.
data
(),
SIGNAL
(
outputAvailable
(
QByteArray
)),
this
,
SLOT
(
handleAppOutput
(
QByteArray
)));
QByteArray
cmdLine
=
"DISPLAY=:0.0 "
+
Utils
::
QtcProcess
::
quoteArgUnix
(
m_command
)
.
toUtf8
()
+
' '
QByteArray
cmdLine
=
"DISPLAY=:0.0 "
+
m_command
.
toUtf8
()
+
' '
+
Utils
::
QtcProcess
::
joinArgsUnix
(
m_cmdArgs
).
toUtf8
()
+
" -tty="
+
m_appOutputFileName
;
if
(
!
m_wd
.
isEmpty
())
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment