aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlincubator/data
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals@canonical.com>2014-03-13 17:09:39 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-19 10:13:00 +0100
commit354d3a17e2a772c467343a47f7b328ea8482f7fa (patch)
tree858013f8d1e3ce8f34d2508e7f02ca0730886c29 /tests/auto/qml/qqmlincubator/data
parentc9456432dc8f06da94c51fde8a834ce563d8843a (diff)
Clear the chain of incubated objects in QQmlIncubatorPrivate::clear
Change-Id: I432310c0e6006d567fd59b4b1021a9e1538ef78f Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'tests/auto/qml/qqmlincubator/data')
-rw-r--r--tests/auto/qml/qqmlincubator/data/objectDeleted.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/qml/qqmlincubator/data/objectDeleted.qml b/tests/auto/qml/qqmlincubator/data/objectDeleted.qml
index f00f975923..c9f6f8b564 100644
--- a/tests/auto/qml/qqmlincubator/data/objectDeleted.qml
+++ b/tests/auto/qml/qqmlincubator/data/objectDeleted.qml
@@ -2,7 +2,9 @@ import QtQuick 2.0
import Qt.test 1.0
Item {
- SelfRegistering {
- value: 11
+ SelfRegisteringOuter {
+ value: SelfRegistering {
+ value: 11
+ }
}
}