aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml
blob: 08ce7875f00c6ba03f8f67a7f02c6c7d15c397eb (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; color: "blue" }
    }
}