aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/functions/test-connection.qml
blob: c706797ea43d8c4aef4bf645a31d9509c1ce04d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    id: screen; width: 50

    property bool tested: false
    signal testMe

    Connections {
        objectName: "connections"
        target: screen;
        function onWidthChanged() { screen.tested = true }
    }
}