debugger: add a simple-minded dumper for QRegion

This commit is contained in:
hjk
2010-06-30 15:20:16 +02:00
parent afeb80429a
commit 74bf5d98e3
2 changed files with 18 additions and 0 deletions

View File

@@ -1377,6 +1377,13 @@ def qdump__QRectF(d, item):
d.putItem(Item(h, None, None, "h"))
def qdump__QRegion(d, item):
d.putValue(" ")
d.putNumChild(1)
if d.isExpanded(item):
with Children(d):
d.putCallItem("rects", item, "rects()")
def qdump__QSet(d, item):
def hashDataFirstNode(value):