forked from qt-creator/qt-creator
Debugger: Fix some internal code model related dumper
Type.unqualified() is gone. Change-Id: Iea3378e0ff4172c197ae8ad025a6ebcd58a2cbbe Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -53,7 +53,7 @@ def readTemplateName(d, value):
|
||||
def readLiteral(d, value):
|
||||
if not value.integer():
|
||||
return "<null>"
|
||||
type = typeTarget(value.type.unqualified())
|
||||
type = typeTarget(value.type)
|
||||
if type and (type.name == "CPlusPlus::TemplateNameId"):
|
||||
return readTemplateName(d, value)
|
||||
elif type and (type.name == "CPlusPlus::QualifiedNameId"):
|
||||
|
||||
Reference in New Issue
Block a user