summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml
blob: 8f9a7f2d35b4679b20e038caa9d4d1f230a7945c (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; colr: "blue"; activeFocus: true }
    }
}