summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/deletingState.qml
blob: 654e09cb2e226e1a79fec6b3ebf698006fd5d2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    StateGroup {
        id: stateGroup
        states: State {
            name: "blue"
            PropertyChanges { target: myRectangle; color: "blue" }
        }
    }
}