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
ff066d5e
Commit
ff066d5e
authored
Jan 12, 2010
by
con
Browse files
Fixes: Missing locals & watchers when debugging on Snow Leopard
Task-number: QTCREATORBUG-436 Reviewed-by: hjk
parent
77b3bf4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
ff066d5e
...
...
@@ -3416,6 +3416,13 @@ void GdbEngine::handleDebuggingHelperValue2(const GdbResponse &response)
WatchData
data
=
response
.
cookie
.
value
<
WatchData
>
();
QTC_ASSERT
(
data
.
isValid
(),
return
);
// The real dumper might have aborted without giving any answers.
// Remove traces of the question, too.
if
(
m_cookieForToken
.
contains
(
response
.
token
-
1
))
{
debugMessage
(
_
(
"DETECTING LOST COMMAND %1"
).
arg
(
response
.
token
-
1
));
--
m_pendingRequests
;
}
//qDebug() << "CUSTOM VALUE RESULT:" << response.toString();
//qDebug() << "FOR DATA:" << data.toString() << response.resultClass;
if
(
response
.
resultClass
!=
GdbResultDone
)
{
...
...
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