aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/bindings/test-connection.qml
blob: f44cbc047fbc0e1bba837f8e44788488c49778ab (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

Item {
    id: screen; width: 50

    property bool tested: false
    signal testMe

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