summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/basicBinding3.qml
blob: a3c47d9db63fcea71a1a010cd90e90fe338eb554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6
Rectangle {
    id: myRectangle

    property color sourceColor: "red"
    property color sourceColor2: "blue"
    width: 100; height: 100
    color: sourceColor
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; color: sourceColor2 }
    }
}