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

Item {
    id: root

    property real test: 9
    property real test2: 3

    property real realProperty: test * test + test
    property alias aliasProperty: root.realProperty

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