aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/OnDestructionComponent.qml
blob: dcf46725cdc21d508e94b5a0574c469eef6e4de2 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0
import Qt.test 1.0 as ModApi

Item {
    id: sec

    property int a: 10
    Component.onDestruction: ModApi.setSpecificProperty(sec, "a", 20);
}