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

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