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
cba4476d
Commit
cba4476d
authored
Mar 05, 2010
by
hjk
Browse files
debugger: fix QHash dumper in the case of simple keys
parent
b3e12957
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.py
View file @
cba4476d
...
...
@@ -307,8 +307,8 @@ def qdump__QHashNode(d, item):
key
=
item
.
value
[
"key"
]
value
=
item
.
value
[
"value"
]
if
isSimpleType
(
valueType
):
d
.
safePutItemHelper
(
Item
(
value
))
if
isSimpleType
(
keyType
)
and
isSimpleType
(
valueType
):
d
.
safePutItemHelper
(
Item
(
value
,
"data"
,
item
.
iname
))
else
:
d
.
putValue
(
" "
)
...
...
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