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
bc09afb5
Commit
bc09afb5
authored
Nov 01, 2010
by
hjk
Browse files
debugger: avoid one inferior call in QDir dumper
Reviewed-by: Friedemann Kleint
parent
36c00b43
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.py
View file @
bc09afb5
...
...
@@ -233,7 +233,7 @@ def qdump__QDateTime(d, item):
def
qdump__QDir
(
d
,
item
):
d
.
putStringValue
(
call
(
item
.
value
,
"path()"
)
)
d
.
putStringValue
(
item
.
value
[
"d_ptr"
][
"d"
].
dereference
()[
"path"
]
)
d
.
putNumChild
(
2
)
if
d
.
isExpanded
(
item
):
with
Children
(
d
,
2
):
...
...
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