aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/Component.qml
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2021-01-18 14:32:00 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2021-01-18 14:58:30 +0100
commite98b48f55cdb57a369513100f82d7c1df99c1243 (patch)
tree327a296abcced1c8bb137eef652c6373ad46cf98 /tests/auto/quick/qquickloader/data/Component.qml
parent1fa352f0e0a62d0b445e9a2a01953f8afca29858 (diff)
QQmlComponentPrivate::setInitialProperties: Do not silently swallow exceptions
Instead, log them with qmlWarning. Change-Id: Icde7397085841a84aca8a81c716d552c4cd4485a Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/quick/qquickloader/data/Component.qml')
-rw-r--r--tests/auto/quick/qquickloader/data/Component.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickloader/data/Component.qml b/tests/auto/quick/qquickloader/data/Component.qml
new file mode 100644
index 0000000000..8a9318a0de
--- /dev/null
+++ b/tests/auto/quick/qquickloader/data/Component.qml
@@ -0,0 +1,5 @@
+import QtQuick 2.15
+
+Item {
+ property int i
+}