aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicklistview/data/ComponentView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicklistview/data/ComponentView.qml')
-rw-r--r--tests/auto/declarative/qquicklistview/data/ComponentView.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/declarative/qquicklistview/data/ComponentView.qml b/tests/auto/declarative/qquicklistview/data/ComponentView.qml
deleted file mode 100644
index 3e87be8799..0000000000
--- a/tests/auto/declarative/qquicklistview/data/ComponentView.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import QtQuick 2.0
-
-ListView {
- id: view
-
- property string title
-
- width: 100; height: 100;
-
- model: 1
- delegate: Text { objectName: "listItem"; text: view.title }
- header: Text { objectName: "header"; text: view.title }
- footer: Text { objectName: "footer"; text: view.title }
- section.delegate: Text { objectName: "section"; text: view.title }
- section.property: "modelData"
-}