From 7ee52d4764888c4c84e55787cbb229aca8b0d1b9 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 2 May 2016 17:38:18 +0200 Subject: [PATCH] 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 --- share/qtcreator/debugger/qttypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/debugger/qttypes.py b/share/qtcreator/debugger/qttypes.py index 856af28f3dd..27b2797c624 100644 --- a/share/qtcreator/debugger/qttypes.py +++ b/share/qtcreator/debugger/qttypes.py @@ -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)