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

debugger: fix QHash dumper in the case of simple keys

parent b3e12957
No related branches found
No related tags found
No related merge requests found
......@@ -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(" ")
......
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