Skip to content
Snippets Groups Projects
Commit bc09afb5 authored by hjk's avatar hjk
Browse files

debugger: avoid one inferior call in QDir dumper

Reviewed-by: Friedemann Kleint
parent 36c00b43
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ def qdump__QDateTime(d, item): ...@@ -233,7 +233,7 @@ def qdump__QDateTime(d, item):
def qdump__QDir(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) d.putNumChild(2)
if d.isExpanded(item): if d.isExpanded(item):
with Children(d, 2): with Children(d, 2):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment