aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-09-15 08:03:09 +0200
committerhjk <hjk@qt.io>2017-09-19 09:20:52 +0000
commitfe1cbd0f877ee8c055911b7e8bdf8f7c6cd131d8 (patch)
tree1460dc453c794330a28b56b45209c1d77510288a /share
parent4f03ea96a2f684f4c9523245c595c37c9ac5027b (diff)
Debugger: Add yet another virtual inheritance test
Failing for now. Change-Id: Ic624b9c64f85f06bf61a2e8f765a272a835c0c43 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/debugger/misctypes.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/share/qtcreator/debugger/misctypes.py b/share/qtcreator/debugger/misctypes.py
index 5b0aa0b30c..0b7662660b 100644
--- a/share/qtcreator/debugger/misctypes.py
+++ b/share/qtcreator/debugger/misctypes.py
@@ -406,31 +406,6 @@ def qdump__QtcDumperTest_List(d, value):
d.putFields(value)
#d.putPlainChildren(value)
-def qdump__QtcDumperTest_List__NodeX(d, value):
- typename = value.type.unqualified().name
- pos0 = typename.find('<')
- pos1 = typename.find('>')
- tName = typename[pos0+1:pos1]
- d.putBetterType('QtcDumperTest_List<' + tName + '>::Node')
- d.putNumChild(1)
- if d.isExpanded():
- obj_type = d.lookupType(tName)
- with Children(d):
- d.putSubItem("this", value.cast(obj_type))
- d.putFields(value)
- #d.putPlainChildren(value)
-
-def qdump__QtcDumperTest_List(d, value):
- innerType = value.type[0]
- d.putNumChild(1)
- p = value['root']
- if d.isExpanded():
- with Children(d):
- d.putSubItem("[p]", p)
- d.putSubItem("[root]", value["root"].cast(innerType))
- d.putFields(value)
- #d.putPlainChildren(value)
-
def qdump__QtcDumperTest_String(d, value):
with Children(d):
first = d.hexdecode(d.putSubItem('first', value['first']).value)