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

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