From ea6592e9b4074fe168d861a6573c127cd49b5b29 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 8 Jul 2019 10:45:44 +0200 Subject: [PATCH] Dumper: Fix handling of namespaced Qt Change-Id: I5fae8dd0051596e3fb13cce32f282f3442adc8c0 Reviewed-by: hjk --- share/qtcreator/debugger/qttypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/debugger/qttypes.py b/share/qtcreator/debugger/qttypes.py index 95217cf3b95..317b3d343ae 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)