Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / DeleteRootObjectInCreationComponentDerived.qml
1 import QtQuick 2.0
2
3 DeleteRootObjectInCreationComponentBase {
4     id: derived
5     color: "black" // will trigger change signal during beginCreate.
6
7     property bool testConditionsMet: false // will be set by base
8     function setTestConditionsMet(obj) {
9         obj.testConditionsMet = derived.testConditionsMet;
10     }
11 }