aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/functions/connection-no-signal-name.qml
blob: 04cc36b3c53c28894ef3260491760be16189b8af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.4

Item {
    id: blaBlaBla
    function hint() {
    }

    Connections {
        //target: blaBlaBla
        // function onHint() { hint() };
        on: true
    }
}