aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicklistview/data/margins.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicklistview/data/margins.qml')
-rw-r--r--tests/auto/declarative/qquicklistview/data/margins.qml47
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/auto/declarative/qquicklistview/data/margins.qml b/tests/auto/declarative/qquicklistview/data/margins.qml
deleted file mode 100644
index 19bbef500f..0000000000
--- a/tests/auto/declarative/qquicklistview/data/margins.qml
+++ /dev/null
@@ -1,47 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: root
- width: 240
- height: 320
- color: "#ffffff"
-
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- height: 20
- width: 240
- Text {
- text: index
- }
- Text {
- x: 30
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- x: 120
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- Text {
- x: 200
- text: wrapper.y
- }
- color: ListView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ListView {
- id: list
- objectName: "list"
- anchors.fill: parent
- topMargin: 30
- bottomMargin: 50
- model: testModel
- delegate: myDelegate
- }
-}