aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/debugger
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2019-07-08 10:45:44 +0200
committerChristian Stenger <christian.stenger@qt.io>2019-07-23 05:35:02 +0000
commitea6592e9b4074fe168d861a6573c127cd49b5b29 (patch)
tree4bdf671896f1ad327e85c488a99c03d61c6ca077 /share/qtcreator/debugger
parent90392397cba6c511a87fc7dcc353afefe2a6dee7 (diff)
Dumper: Fix handling of namespaced Qt
Change-Id: I5fae8dd0051596e3fb13cce32f282f3442adc8c0 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'share/qtcreator/debugger')
-rw-r--r--share/qtcreator/debugger/qttypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/qttypes.py b/share/qtcreator/debugger/qttypes.py
index 95217cf3b9..317b3d343a 100644
--- a/share/qtcreator/debugger/qttypes.py
+++ b/share/qtcreator/debugger/qttypes.py
@@ -1207,7 +1207,7 @@ def qdump__QObjectPrivate__ConnectionList(d, value):
with Children(d):
first, last = value.split('pp')
currentConnection = first
- connectionType = d.createType('QObjectPrivate::Connection')
+ connectionType = d.createType('@QObjectPrivate::Connection')
while currentConnection and currentConnection != last:
sender, receiver, slotObj, nextConnectionList, nextp, prev = \
d.split('pppppp', currentConnection)