-
Bug
-
Resolution: Invalid
-
P2: Important
-
5.15.19, 6.5.10, 6.8.4, 6.9.1, 6.10.0 RC
-
None
Besides QtCreator showing an error
"glyph" is not a member of "QtObject" (M18)
when running the following application the output shows
qrc:/qt/qml/untitled5/Main.qml:21:14: Cannot assign to non-existent property "glyph"
import QtQuick Window { id: root width: 640 height: 480 visible: true title: qsTr("Hello World") component MyText: Item { property QtObject icon: QtObject { property alias glyph: test.text } Text { id: test } } MyText { icon.glyph: "Hallo" } }