Skip to content
GitLab
Menu
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
8e0483a4
Commit
8e0483a4
authored
Apr 07, 2010
by
hjk
Browse files
debugger: fix
5d599456
thread-group-started was already handled
parent
f3caf7c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
8e0483a4
...
...
@@ -438,13 +438,11 @@ void GdbEngine::handleResponse(const QByteArray &buff)
invalidateSourcesList
();
}
else
if
(
asyncClass
==
"thread-group-added"
)
{
// 7.1-symbianelf has "{id="i1"}"
}
else
if
(
asyncClass
==
"thread-group-started"
)
{
// 7.1-symbianelf has "{id="i1",pid="42000"}"
}
else
if
(
asyncClass
==
"thread-group-created"
||
asyncClass
==
"thread-group-started"
)
{
// Archer had only "{id="28902"}" at some point of 6.8.x.
// *-
crea
ted seems to be standard
nowadays
, but in early
// 7.0.x, there was a *-
star
ted instead.
// *-
star
ted seems to be standard
in 7.1
, but in early
// 7.0.x, there was a *-
crea
ted instead.
int
progress
=
m_progress
->
progressValue
();
m_progress
->
setProgressValue
(
qMin
(
70
,
progress
+
1
));
QByteArray
id
=
result
.
findChild
(
"id"
).
data
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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