summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml
blob: 640fb54f995ce379c1267f527fbb5b7b342ddf68 (plain)
1
2
3
4
5
6
import Test 1.0
MyQmlObject {
    property bool receivedNotify : false
    onPropertyWithNotifyChanged: { receivedNotify = true; }
}