aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativelistview/data/header.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativelistview/data/header.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativelistview/data/header.qml38
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/auto/qtquick1/qdeclarativelistview/data/header.qml b/tests/auto/qtquick1/qdeclarativelistview/data/header.qml
deleted file mode 100644
index 38cdd6e0c4..0000000000
--- a/tests/auto/qtquick1/qdeclarativelistview/data/header.qml
+++ /dev/null
@@ -1,38 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- function changeHeader() {
- list.header = header2
- }
- width: 240
- height: 320
- color: "#ffffff"
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- height: 30
- width: 240
- Text {
- text: index
- }
- color: ListView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ListView {
- id: list
- objectName: "list"
- focus: true
- width: 240
- height: 320
- snapMode: ListView.SnapToItem
- model: testModel
- delegate: myDelegate
- header: Text { objectName: "header"; text: "Header"; height: 20 }
- }
- Component {
- id: header2
- Text { objectName: "header2"; text: "Header 2"; height: 10 }
- }
-}