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

Item {
    width: 50

    property bool tested: false

    Connections { onWidthChanged: tested = true }
}