diff options
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/data/selfDeletingBinding.2.qml')
-rw-r--r-- | tests/auto/declarative/qmlecmascript/data/selfDeletingBinding.2.qml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/selfDeletingBinding.2.qml b/tests/auto/declarative/qmlecmascript/data/selfDeletingBinding.2.qml deleted file mode 100644 index 58cf805..0000000 --- a/tests/auto/declarative/qmlecmascript/data/selfDeletingBinding.2.qml +++ /dev/null @@ -1,17 +0,0 @@ -import Qt.test 1.0 - -MyQmlContainer { - property bool triggerDelete: false - - children: [ - MyQmlObject { - // Will trigger deletion on binding assignment - deleteOnSet: Math.max(0, 1) - }, - - MyQmlObject { - // Will trigger deletion on binding assignment, but after component creation - deleteOnSet: if (triggerDelete) 1; else 0; - } - ] -} |