tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
     3     id: myRectangle
     3     id: myRectangle
     4     width: 100; height: 100
     4     width: 100; height: 100
     5     color: "red"
     5     color: "red"
     6     states: State {
     6     states: State {
     7         name: "blue"
     7         name: "blue"
     8         PropertyChanges { target: myRectangle; colr: "blue"; wantsFocus: true }
     8         PropertyChanges { target: myRectangle; colr: "blue"; activeFocus: true }
     9     }
     9     }
    10 }
    10 }