aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/onDestructionCount.qml
blob: 3938acf6a501a21eefefd534bc97aae0c5a834b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Item {
    Component {
        id: internalComponent

        Item {
            Component.onDestruction: console.warn('Component.onDestruction')
        }
    }

    Component.onCompleted: {
        internalComponent.createObject()
        gc()
    }
}