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


FAction {
    id: theAction

    signal call

    onExecute: {
        call();
    }
}