aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickvisualdatamodel/data/create.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickvisualdatamodel/data/create.qml')
-rw-r--r--tests/auto/declarative/qquickvisualdatamodel/data/create.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/declarative/qquickvisualdatamodel/data/create.qml b/tests/auto/declarative/qquickvisualdatamodel/data/create.qml
deleted file mode 100644
index 3475a0dace..0000000000
--- a/tests/auto/declarative/qquickvisualdatamodel/data/create.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.0
-
-ListView {
- width: 200
- height: 200
-
- model: VisualDataModel {
- id: visualModel
-
- persistedItems.includeByDefault: true
-
- model: myModel
- delegate: Item {
- id: delegate
- objectName: "delegate"
- width: 200
- height: 20
-
- property bool destroyed: false
-
-
- Component.onDestruction: destroyed = true
- }
- }
-}