summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml
blob: db9b017fe7ea0a4c24a4dc778d4b9df7eaeed40d (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; colr: "blue" }
    }
}