aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/RootObject.qml
blob: bf46155c967b78a46664d8516f36b1abe0e072e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0

Rectangle {
    id: root
    color:"red"
    property bool rootIndestructible:false
    property bool childDestructible:child === null
    onColorChanged: {
      try {
        root.destroy();
        gc();
      } catch(e) {
         rootIndestructible = true;
      }
    }

    QtObject {
      id:child
    }
    Component.onCompleted: child.destroy();
}