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