aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/OnDestructionComponent.qml
blob: 76e0ec379350a1d9d8bc08971ec157c38ef0fb56 (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.QObject.setSpecificProperty(sec, "a", 20);
}