summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView/basic4/basic4.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/ListView/basic4/basic4.xml')
-rw-r--r--tests/auto/declarative/visual/ListView/basic4/basic4.xml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/declarative/visual/ListView/basic4/basic4.xml b/tests/auto/declarative/visual/ListView/basic4/basic4.xml
deleted file mode 100644
index 4b9201c..0000000
--- a/tests/auto/declarative/visual/ListView/basic4/basic4.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<Rect color="blue" width="800" height="600" id="Page">
- <ListModel id="Model">
- <Month>
- <name>January</name>
- </Month>
- <Month>
- <name>February</name>
- </Month>
- </ListModel>
-
- <Component id="Delegate">
- <Rect color="red" width="100" height="100">
- <Text text="{name}" />
- </Rect>
- </Component>
-
- <ListView anchors.fill="{parent}" model="{Model}" delegate="{Delegate}">
- </ListView>
-</Rect>