summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml
blob: 954ca979764b6e9fa689fc6efe38b0a4ca938f72 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7

Item {
    id: screen; width: 50

    property bool tested: false
    signal testMe

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