summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml
blob: fca791676e0d86687236de0aae10e0771cf7dae2 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; color: "blue" }
    }
}