aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml b/tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml
deleted file mode 100644
index bfc9a8dd8a..0000000000
--- a/tests/auto/qtquick1/qdeclarativeloader/data/CreationContextLoader.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 1.0
-
-Loader {
- id: myLoader
- property int testProperty: 1912
- sourceComponent: loaderComponent
- Component {
- id: loaderComponent
- Item {
- Component.onCompleted: {
- test = (myLoader.testProperty == 1912);
- }
- }
- }
-}