aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/connection-no-signal-name.qml
blob: 462a9577ff2dcf49bcc4b4d19e229eb9fe7d87c4 (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
        //onHint: hint();
        on: true
    }
}