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
b358b106
Commit
b358b106
authored
Jan 30, 2009
by
Oswald Buddenhagen
Browse files
less confusing "starting debugger" messages
parent
ece56b57
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
b358b106
...
...
@@ -1555,9 +1555,7 @@ bool GdbEngine::startDebugger()
qDebug() << "ExeFile: " << q->m_executable;
#endif
q
->
showStatusMessage
(
tr
(
"Starting Debugger"
));
emit
gdbInputAvailable
(
QString
(),
q
->
settings
()
->
m_gdbCmd
+
' '
+
gdbArgs
.
join
(
" "
));
q
->
showStatusMessage
(
tr
(
"Starting Debugger: "
)
+
q
->
settings
()
->
m_gdbCmd
+
' '
+
gdbArgs
.
join
(
" "
));
m_gdbProc
.
start
(
q
->
settings
()
->
m_gdbCmd
,
gdbArgs
);
m_gdbProc
.
waitForStarted
();
...
...
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