summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/declarative/repeater.qml16
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/src/snippets/declarative/repeater.qml b/doc/src/snippets/declarative/repeater.qml
index 309fead..f8ac856 100644
--- a/doc/src/snippets/declarative/repeater.qml
+++ b/doc/src/snippets/declarative/repeater.qml
@@ -1,14 +1,16 @@
import Qt 4.6
+Rectangle {
+ width: 220; height: 20; color: "white"
+
//! [0]
-Rectangle { width: 220; height: 20; color: "white"
- Component { id: Dot
- Rectangle { width: 20; height: 20; radius: 10; color: "green" }
- }
- HorizontalLayout {
+ Row {
Rectangle { width: 10; height: 20; color: "red" }
- Repeater { component: Dot; dataSource: 10 }
+ Repeater {
+ model: 10
+ Rectangle { width: 20; height: 20; radius: 10; color: "green" }
+ }
Rectangle { width: 10; height: 20; color: "blue" }
}
-}
//! [0]
+}