Debugger: Disable QModelIndex dumper

The inferior calls to rowCount() and columnCount() used to create
data() display are troublesome when debugging an actual
issue with item models and not too helpful otherwise. People needing
that information can still evaluate idx.data() etc manually.

Change-Id: If736afbf8fc44cf28e7f07e5f2c3b039a2f4984c
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2016-05-02 17:38:18 +02:00
parent 4021a2a902
commit 7ee52d4764

View File

@@ -145,10 +145,10 @@ def qdump_X_QAbstractItemModel(d, value):
#d.putType(mi.type)
#gdb.execute("call free($ri)")
def qform__QModelIndex():
def qform_X_QModelIndex():
return [SimpleFormat, EnhancedFormat]
def qdump__QModelIndex(d, value):
def qdump_X_QModelIndex(d, value):
displayFormat = d.currentItemFormat()
if displayFormat == SimpleFormat:
d.putPlainChildren(value)