aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/idAccess.qml
blob: 209092687208fcec493e86e8286f137e4ccae1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick

Item {
    id: root
    y: z
    onXChanged: {
        root.y = 48
        ttt.font.pointSize = 22
    }
    z: 12

    Text {
        id: ttt
    }
}