aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/idAccess.qml
blob: 6ca1f7f66bcd973ffd27e9641d0c46939f04c640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
        }
    }
}