aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativelistview/data/header1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativelistview/data/header1.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativelistview/data/header1.qml33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/auto/qtquick1/qdeclarativelistview/data/header1.qml b/tests/auto/qtquick1/qdeclarativelistview/data/header1.qml
deleted file mode 100644
index f2ab4c1257..0000000000
--- a/tests/auto/qtquick1/qdeclarativelistview/data/header1.qml
+++ /dev/null
@@ -1,33 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 240
- height: 320
- color: "#ffffff"
-
- ListModel { id: testModel }
-
- ListView {
- id: list
- objectName: "list"
- width: parent.width
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- model: testModel
- delegate: Text {
- objectName: "wrapper"
- font.pointSize: 20
- text: index
- }
- footer: Rectangle {
- width: parent.width
- height: 40
- color: "green"
- }
- header: Text { objectName: "header"; text: "Header" }
- }
-
- Component.onCompleted: {
- for (var i=0; i<30; i++) testModel.append({"name" : i, "val": i})
- }
-}