aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/DeleteRootObjectInCreationComponentDerived.qml
blob: c6273465d7920505f9b26f81237c86f87969ed86 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

DeleteRootObjectInCreationComponentBase {
    id: derived
    color: "black" // will trigger change signal during beginCreate.

    property bool testConditionsMet: false // will be set by base
    function setTestConditionsMet(obj) {
        obj.testConditionsMet = derived.testConditionsMet;
    }
}