summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/repeater/basic4/basic4.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/repeater/basic4/basic4.xml')
-rw-r--r--tests/auto/declarative/visual/repeater/basic4/basic4.xml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/declarative/visual/repeater/basic4/basic4.xml b/tests/auto/declarative/visual/repeater/basic4/basic4.xml
deleted file mode 100644
index 53b8ff9..0000000
--- a/tests/auto/declarative/visual/repeater/basic4/basic4.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<Rect color="blue" width="800" height="600" id="Page">
- <ListModel id="DataSource">
- <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>
- <HorizontalLayout>
- <Repeater dataSource="{DataSource}" component="{Delegate}" />
- </HorizontalLayout>
-</Rect>