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