DEBSOURCES
Skip Quicknav
sources / qtdeclarative-opensource-src-gles / 5.15.17%2Bdfsg-1 / tests / auto / qml / qqmlconnections / data / functions / test-connection-implicit.qml
123456789
import QtQuick 2.0 Item { width: 50 property bool tested: false Connections { function onWidthChanged() { tested = true } } }