QmlDesigner: Fix compound alias properties

Change-Id: I5d58b6b740af71ef10010548429e1d12f97c620c
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2022-04-06 16:58:20 +02:00
parent be1437c797
commit 3da441f4d1

View File

@@ -98,7 +98,6 @@ static TypeName resolveTypeName(const ASTPropertyReference *ref, const ContextPt
type = componentObjectValue->className().toUtf8(); type = componentObjectValue->className().toUtf8();
dotProperties = getObjectTypes(componentObjectValue, context); dotProperties = getObjectTypes(componentObjectValue, context);
} else if (const ObjectValue * objectValue = value->asObjectValue()) { } else if (const ObjectValue * objectValue = value->asObjectValue()) {
type = objectValue->className().toUtf8();
dotProperties = getObjectTypes(objectValue, context); dotProperties = getObjectTypes(objectValue, context);
} }