aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml')
-rw-r--r--tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml b/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml
deleted file mode 100644
index b47f22dc34..0000000000
--- a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_package.qml
+++ /dev/null
@@ -1,42 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 100
- height: 100
-
- ListView {
- anchors.fill: parent
-
- model: visualModel.parts.list
- }
- VisualDataModel {
- id: visualModel
-
- model: myModel
- delegate: Package {
- Item {
- Package.name: "list"
- width: 100
- height: 20
- }
-
- Item {
- id: gridItem
- Package.name: "grid"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "delegate"
- parent: gridItem
- width: 20
- height: 20
- }
- }
- }
- GridView {
- anchors.fill: parent
-
- model: visualModel.parts.grid
- }
-}