aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml')
-rw-r--r--tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml b/tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml
new file mode 100644
index 0000000000..3a496ea6fe
--- /dev/null
+++ b/tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.0
+
+QtObject {
+ id: root
+
+ property bool test: false
+
+ Component.onCompleted: {
+ var c = Qt.createComponent("statusChanged.qml");
+ c.incubateObject(root, null, Qt.Synchronous);
+ }
+}