summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlconnection/data/test-connection.qml
blob: 953462105589bcdb04687abcb02dc8de451a37ca (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

Item {
    id: screen; width: 50

    property bool tested: false
    signal testMe

    Connection { sender: screen; signal: "widthChanged()"; script: screen.tested = true }
}