aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/functions/disabled-at-start.qml
blob: 981437fe8c222e969c51d8abf33e07d081b05b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.9

Item {
    id: root

    property bool tested: false
    signal testMe()

    Connections {
        target: root
        enabled: false
        function onTestMe() { root.tested = true; }
    }
}