aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/underscore.qml
blob: 0f73dc8f1735ce9e43833024f56e5ab431201af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.12

Item {
    id: item
    property bool success: false
    property bool sanityCheck: false
    property int __underscore_property: 0
    on__Underscore_propertyChanged: item.sanityCheck = true

    Connections {
        target: item
        on__Underscore_propertyChanged: item.success = true
    }
}