tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Test 1.0
       
     2 MyQmlObject {
       
     3     property bool receivedNotify : false
       
     4     onPropertyWithNotifyChanged: { receivedNotify = true; }
       
     5 }
       
     6