aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/active.4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickloader/data/active.4.qml')
-rw-r--r--tests/auto/declarative/qquickloader/data/active.4.qml26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/auto/declarative/qquickloader/data/active.4.qml b/tests/auto/declarative/qquickloader/data/active.4.qml
deleted file mode 100644
index 63fd46e2da..0000000000
--- a/tests/auto/declarative/qquickloader/data/active.4.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
-
- Component {
- id: inlineTestComponent
- Item {
- id: inlineTestItem
- property int someProperty: 5
- }
- }
-
- Loader {
- id: loader
- objectName: "loader"
- sourceComponent: inlineTestComponent
-
- property int sourceComponentChangedCount: 0
- onSourceComponentChanged: sourceComponentChangedCount = sourceComponentChangedCount + 1
- }
-
- function doSetInactive() {
- loader.active = false;
- }
-}