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