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:
hjk
2024-05-28 14:29:02 +02:00
parent 96d4819138
commit 4bf55f3239

View File

@@ -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"):