diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 6278d20fce6..5eddd208eb2 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -864,6 +864,7 @@ class Item: # This is a mapping from 'type name' to 'display alternatives'. qqFormats = {} +qqDumpers = {} qqNs = "" diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 00f0f923cbd..1a912257161 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -631,6 +631,7 @@ def qdump__QObject(d, item): d.putNumChild(4) if d.isExpanded(item): with Children(d): + d.putFields(item) # Parent and children. if stripClassTag(str(item.value.type)) == d.ns + "QObject": d.putItem(Item(d_ptr["parent"], item.iname, "parent", "parent"))