aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/badSignalHandlerName.qml
blob: 921787aa362b707aab334d51188299cb557244b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQml

QtObject {
    id: root
    signal _foo

    property int handled: 0

    property Connections c: Connections {
        target: root
        function on_Foo() { root.handled += 1 }
        function on_foo() { root.handled += 2 }
    }
}