aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypeproviders/data/recursiveWriteBack.qml
blob: d6707e37cd4b56b4cff920030551d8a7354b9d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml
import Test

MyTypeObject {
    property list<structured> l: [{i : 21}, {c: 22}, {p: {x: 199, y: 222}}]

    Component.onCompleted: {
        l[2].i = 4
        l[1].p.x = 88
        l[0].sizes[1].width = 19
        structured.p.x = 76
    }
}