aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/AutomatchedSignalHandler.qml
blob: 064444e182d10c18f883b6119325e346f13f4ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.12

Item {
    width: 640
    height: 480

    MouseArea {
        anchors.fill: parent
        onClicked: console.log("okok")

        Connections {
            onClicked: console.log(mouse.x)
        }
    }
}