aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlproperty/data/aliasPropertyBindings2.qml
blob: 60cb08820920be46e1485cb16ccdff63706340e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.0

Item {
    id: root

    property real test: 9
    property real test2: 3

    property alias aliasProperty: innerObject.realProperty

    property QtObject innerObject: QtObject {
        id: innerObject
        property real realProperty: test * test + test
    }

    states: State {
        name: "switch"
        PropertyChanges {
            target: root
            aliasProperty: 32 * test2
        }
    }
}