summaryrefslogtreecommitdiff
path: root/share/qtcreator
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-11-04 17:21:13 +0100
committerEike Ziller <eike.ziller@nokia.com>2011-11-09 08:49:08 +0100
commit371ae894f0fc4a26313eafb5de168b3e31b8a8de (patch)
tree732c1526932b3e9768e5c7d3b68aa9691d8cc261 /share/qtcreator
parent04dfc449702317adc05b101c452f51e86ddc6677 (diff)
downloadqt-creator-371ae894f0fc4a26313eafb5de168b3e31b8a8de.tar.gz
debugger: fix display of signal-slot connection
Change-Id: I0923bdd0ba1166639d85f8343a5abce8f2912400 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'share/qtcreator')
-rw-r--r--share/qtcreator/dumper/qttypes.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/share/qtcreator/dumper/qttypes.py b/share/qtcreator/dumper/qttypes.py
index e995cae116..2f905b6895 100644
--- a/share/qtcreator/dumper/qttypes.py
+++ b/share/qtcreator/dumper/qttypes.py
@@ -882,22 +882,27 @@ def qdump__QObject(d, value):
d.putItemCount(connectionListCount, 0)
d.putNumChild(connectionListCount)
if d.isExpanded():
+ pp = 0
with Children(d):
vectorType = connections.type.target().fields()[0].type
innerType = templateArgument(vectorType, 0)
# Should check: innerType == ns::QObjectPrivate::ConnectionList
p = gdb.Value(connections["p"]["array"]).cast(innerType.pointer())
- pp = 0
for i in xrange(connectionListCount):
first = p.dereference()["first"]
while not isNull(first):
- d.putSubItem(i, first.dereference())
- first = first["next"]
+ with SubItem(d, pp):
+ connection = first.dereference()
+ d.putItem(connection)
+ d.putValue(connection["callFunction"])
+ first = first["nextConnectionList"]
# We need to enforce some upper limit.
pp += 1
if pp > 1000:
break
p += 1
+ if pp < 1000:
+ d.putItemCount(pp)
# Signals.