aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml b/tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml
deleted file mode 100644
index 4134259714..0000000000
--- a/tests/auto/qtquick1/qdeclarativevisualdatamodel/data/objectlist.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 1.0
-
-ListView {
- width: 100
- height: 100
- anchors.fill: parent
- model: myModel
- delegate: Component {
- Rectangle {
- height: 25
- width: 100
- color: model.modelData.color
- Text { objectName: "name"; text: name }
- Text { objectName: "section"; text: parent.ListView.section }
- }
- }
- section.property: "name"
- section.criteria: ViewSection.FullString
-}