debugger: fix QSet dumper

Task-number: QTCREATORBUG-6547
Change-Id: I567f6970ad2d89d862ed86fbaa69e7eecacb9738
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2011-11-16 11:45:32 +01:00
committed by hjk
parent 7450284ebe
commit 2e2e83ea8a

View File

@@ -1252,7 +1252,7 @@ def qdump__QSet(d, value):
isSimpleKey = isSimpleType(keyType)
node = hashDataFirstNode(value)
innerType = e_ptr.dereference().type
with Children(d, size, numChild=1000, childType=keyType):
with Children(d, size, maxNumChild=1000, childType=innerType):
for i in xrange(size):
it = node.dereference().cast(innerType)
with SubItem(d, i):