summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/deleting.qml
blob: 0c512ddb945c82ff8aefca17ec04295895aaf8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.6
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" }
    }
}