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

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