summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/plugins/com/ford/hmiframework/qml/Framework/FActWidgetCall.qml
blob: 6e7048fe9a7fde2fae237f8e3016273d11ee00fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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();
    }
}