summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml
blob: bf325a74ee80c9ce2a964d337a26a738c3040910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Test 1.0
MyTypeObject {
    rectProperty.x: 10
    rectProperty.y: 11
    rectProperty.width: rectProperty.x + 2
    rectProperty.height: 13

    intProperty: rectProperty.x

    onAction: { var a = rectProperty; a.x = 12; }

    rectProperty2: rectProperty
}