aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/bindings/disabled-at-start.qml
blob: 1a823f87f68c6bea7618e1053028ec13a8dada1c (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
        onTestMe: root.tested = true;
    }
}