aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/deleting.qml
blob: b8e8d33c171090e35a6efdabb8104672caa5fae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
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" }
    }
}