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