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
2592e6ee
Commit
2592e6ee
authored
Jun 10, 2010
by
Oswald Buddenhagen
Browse files
non-python: fix dumping of structs inside qt containers
Reviewed-by: hjk
parent
20764c22
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/classicgdbengine.cpp
View file @
2592e6ee
...
...
@@ -813,7 +813,7 @@ void GdbEngine::handleVarListChildrenHelperClassic(const GdbMi &item,
data
.
type
=
tr
(
"<anonymous union>"
);
}
else
{
// A structure. Hope there's nothing else...
data
.
exp
=
parent
.
exp
+
'.'
+
data
.
name
.
toLatin1
();
data
.
exp
=
'('
+
parent
.
exp
+
")."
+
data
.
name
.
toLatin1
();
}
if
(
hasDebuggingHelperForType
(
data
.
type
))
{
...
...
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