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

Item {
    width: 50

    property bool tested: false

    Connections { function onWidthChanged() { tested = true } }
}