aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-07-31 12:37:43 +0200
committerhjk <hjk@qt.io>2019-07-31 12:18:02 +0000
commitae66f63390cf1165bba1d00e7b79b27d36498501 (patch)
treebc531ff03cb1ae2ab69bf5a7ea0fd15bcdac4775 /share/qtcreator
parent5d3010a722d2b90bcdf870e7ba04e8a87f790707 (diff)
Debugger: Disable QObject connection and signal display
Besides the announced change to QObject guts in a5a859e72 there has been at least 6e0b5dadc and possibly more, so give up here. Change-Id: I84201cef9f2a7515f082f4c3310bdc96f7a4216d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'share/qtcreator')
-rw-r--r--share/qtcreator/debugger/dumper.py6
-rw-r--r--share/qtcreator/debugger/qttypes.py6
2 files changed, 8 insertions, 4 deletions
diff --git a/share/qtcreator/debugger/dumper.py b/share/qtcreator/debugger/dumper.py
index 341ceb7145..1401926858 100644
--- a/share/qtcreator/debugger/dumper.py
+++ b/share/qtcreator/debugger/dumper.py
@@ -1994,14 +1994,16 @@ class DumperBase:
with Children(self):
self.putQObjectGutsHelper(0, 0, -1, metaObjectPtr, 'QMetaObject')
- with SubItem(self, '[connections]'):
+ if False:
+ with SubItem(self, '[connections]'):
if connectionListsPtr:
typeName = '@QObjectConnectionListVector'
self.putItem(self.createValue(connectionListsPtr, typeName))
else:
self.putItemCount(0)
- with SubItem(self, '[signals]'):
+ if False:
+ with SubItem(self, '[signals]'):
self.putItemCount(signalCount)
if self.isExpanded():
with Children(self):
diff --git a/share/qtcreator/debugger/qttypes.py b/share/qtcreator/debugger/qttypes.py
index 864b229953..a584e24e84 100644
--- a/share/qtcreator/debugger/qttypes.py
+++ b/share/qtcreator/debugger/qttypes.py
@@ -1211,7 +1211,8 @@ def qdump__QMetaObject(d, value):
d.putMembersItem(value)
-def qdump__QObjectPrivate__ConnectionList(d, value):
+if False:
+ def qdump__QObjectPrivate__ConnectionList(d, value):
d.putNumChild(1)
if d.isExpanded():
i = 0
@@ -1948,7 +1949,8 @@ def qdump__QVector(d, value):
d.putItemCount(size)
d.putPlotData(data, size, value.type[0])
-def qdump__QObjectConnectionList(d, value):
+if False:
+ def qdump__QObjectConnectionList(d, value):
dd = d.extractPointer(value)
data, size, alloc = d.vectorDataHelper(dd)
d.check(0 <= size and size <= alloc and alloc <= 1000 * 1000 * 1000)