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

Item {
    id: screen; width: 50

    property bool tested: false
    signal testMe

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