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
Marco Bubke
flatpak-qt-creator
Commits
cb7bc388
Commit
cb7bc388
authored
May 07, 2009
by
hjk
Browse files
debugger: don't try to show a reason for stopping if we don't know one.
parent
fae36d9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
cb7bc388
...
...
@@ -1131,7 +1131,10 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data)
}
}
#endif
q
->
showStatusMessage
(
tr
(
"Stopped:
\"
%1
\"
"
).
arg
(
_
(
reason
)));
if
(
reason
.
isEmpty
())
q
->
showStatusMessage
(
tr
(
"Stopped."
));
else
q
->
showStatusMessage
(
tr
(
"Stopped:
\"
%1
\"
"
).
arg
(
_
(
reason
)));
handleAsyncOutput2
(
data
);
}
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