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
0c05c042
Commit
0c05c042
authored
Feb 04, 2010
by
hjk
Browse files
debugger: fix new QHashNode dumper
parent
e539f5bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.py
View file @
0c05c042
...
...
@@ -317,11 +317,11 @@ def qdump__QHashNode(d, item):
d
.
beginChildren
()
d
.
beginHash
()
d
.
putName
(
"key"
)
d
.
putItemHelper
(
Item
(
key
,
None
,
None
))
d
.
putItemHelper
(
Item
(
key
,
item
.
iname
,
"key"
))
d
.
endHash
()
d
.
beginHash
()
d
.
putName
(
"value"
)
d
.
putItemHelper
(
Item
(
value
,
None
,
None
))
d
.
putItemHelper
(
Item
(
value
,
item
.
iname
,
"value"
))
d
.
endHash
()
d
.
endChildren
()
...
...
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