summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml
blob: 26405d9979b68281f3eb0ae67e12d2056d5c960b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7
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 }
    }
}