summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/plugins/com/ford/hmiframework/qml/Framework/FViewUseCaseSimple.qml
blob: 44da5a5a797da19c64ea74be6842a4aadcceb2ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0

StateGroup {
    default property alias propertyChange: theState.changes
    property alias condition: theState.when

    states: [
        State {
            id: theState
            name: "*"
            when: true == true
        }
    ]
}