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
8fdf9e61
Commit
8fdf9e61
authored
Oct 09, 2009
by
Oswald Buddenhagen
Browse files
remove "stopped" which is immediately followed by "processing queued..."
parent
0eca1500
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
8fdf9e61
...
...
@@ -1037,15 +1037,13 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data)
if
(
!
m_commandsToRunOnTemporaryBreak
.
isEmpty
())
{
QTC_ASSERT
(
state
()
==
InferiorStopping
,
qDebug
()
<<
state
())
setState
(
InferiorStopped
);
showStatusMessage
(
tr
(
"Stopped."
),
5000
);
// FIXME: racy
showStatusMessage
(
tr
(
"Processing queued commands."
),
1000
);
while
(
!
m_commandsToRunOnTemporaryBreak
.
isEmpty
())
{
GdbCommand
cmd
=
m_commandsToRunOnTemporaryBreak
.
takeFirst
();
debugMessage
(
_
(
"RUNNING QUEUED COMMAND %1 %2"
)
.
arg
(
cmd
.
command
).
arg
(
_
(
cmd
.
callbackName
)));
flushCommand
(
cmd
);
}
showStatusMessage
(
tr
(
"Processing queued commands."
),
1000
);
QTC_ASSERT
(
m_commandsDoneCallback
==
0
,
/**/
);
m_commandsDoneCallback
=
&
GdbEngine
::
autoContinueInferior
;
return
;
...
...
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