summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/explicit.qml
blob: ca7e2744f91244a4c0bc9b27c48fbf89c4df196d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt 4.6
Rectangle {
    id: MyRectangle
    property color sourceColor: "blue"
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges {
            objectName: "changes"
            target: MyRectangle; explicit: true
            color: sourceColor
        }
    }
}