aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickgridview/data/ComponentView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickgridview/data/ComponentView.qml')
-rw-r--r--tests/auto/declarative/qquickgridview/data/ComponentView.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qquickgridview/data/ComponentView.qml b/tests/auto/declarative/qquickgridview/data/ComponentView.qml
deleted file mode 100644
index 12ab6c92d1..0000000000
--- a/tests/auto/declarative/qquickgridview/data/ComponentView.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 2.0
-
-GridView {
- 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 }
-}