summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/plugins/com/ford/hmiframework/qml/Framework/FActWidgetProperty.qml
blob: 040695d298b45f88f5ec13e6dbf1e41135b03dba (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 change

    onExecute: {
        change();
    }
}