qtdeclarative/tests/auto/qml/qmlcppcodegen/data/idAccess.qml

21 lines
292 B
QML

pragma Strict
import QtQuick
Item {
id: root
y: z
onXChanged: {
root.y = 48
ttt.font.pointSize = 22
}
z: 12
Text {
id: ttt
onTextChanged: {
root.objectName = "dead"
ttt.objectName = "context"
}
}
}