summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml
blob: 4425b4dd4988c8163a8a998440c549de90ea6288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

Rectangle {
    id: theRect
    property bool triggerState: false
    property string stateString: ""
    states: State {
        when: triggerState
        PropertyChanges {
            target: theRect
            stateString: "inState"
        }
    }
}