Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / SignalEmittedComponent.qml
1 import QtQuick 2.0
2 import Qt.test 1.0 as ModApi
3
4 Item {
5     id: sec
6     property int a: 10
7     Component.onDestruction: {
8         ModApi.setSpecificProperty(sec, "a", 20);
9     }
10
11     function setSuccessPropertyOf(obj, val) {
12         obj.success = val;
13     }
14 }