aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml
blob: 4973b82c3fd522b68a8508104aefcefea55f9d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0
Rectangle {
    id: myRectangle

    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; colr: "blue" }
    }
}