diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 4d216069f3c5b59a59c3c09a76a6eee12aafc84e..f107834cde77c4afcccb1f0594d8271e1e799a96 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -1887,6 +1887,7 @@ def qdump__QVariant(d, item): "('%sQVariant::Type')%d" % (d.ns, d_member["type"]))) type = type[type.find('"') + 1 : type.rfind('"')] type = type.replace("Q", d.ns + "Q") # HACK! + type = type.replace("uint", "unsigned int") # HACK! type = type.replace("COMMA", ",") # HACK! #warn("TYPE: %s" % type) data = call(item.value, "constData") @@ -1896,7 +1897,6 @@ def qdump__QVariant(d, item): d.putNumChild(1) if d.isExpanded(item): with Children(d): - # This fails for templated and namepspaced types. tdata = data.cast(lookupType(type).pointer()).dereference() #warn("TDATA: %s" % tdata) d.putSubItem(Item(tdata, item.iname, "data", "data"))