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
556359f5
Commit
556359f5
authored
Apr 08, 2011
by
hjk
Browse files
debugger: use the new enum
parent
76212f67
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/pythongdbengine.cpp
View file @
556359f5
...
...
@@ -154,9 +154,8 @@ void GdbEngine::handleStackFramePython(const GdbResponse &response)
dummy
.
iname
=
child
.
findChild
(
"iname"
).
data
();
GdbMi
wname
=
child
.
findChild
(
"wname"
);
if
(
wname
.
isValid
())
{
// Happens (only) for watched expressions. They are encoded as.
// base64 encoded 8 bit data, without quotes
dummy
.
name
=
decodeData
(
wname
.
data
(),
5
);
// Happens (only) for watched expressions.
dummy
.
name
=
decodeData
(
wname
.
data
(),
Base64Encoded8Bit
);
dummy
.
exp
=
dummy
.
name
.
toUtf8
();
}
else
{
dummy
.
name
=
_
(
child
.
findChild
(
"name"
).
data
());
...
...
Write
Preview
Markdown
is supported
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