aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qquickconnection/data/test-connection.qml
blob: ce851fc3dbaa96873f6530a4bd5cb4011f607980 (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 { target: screen; onWidthChanged: screen.tested = true }
}