diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-09-22 04:46:48 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-09-22 04:46:48 (GMT) |
commit | cf82572d50470a4d48d1c564b55ad79bb205b228 (patch) | |
tree | 866963563a849fd6bc9653bf602a6faa8a01a0a2 /doc/src/snippets | |
parent | 8fbd9381dc2bca5d686371a733e4c0d7d51123dc (diff) | |
parent | 69ba43af52a42244805f866e5c2e0bb91dc6dec5 (diff) | |
download | Qt-cf82572d50470a4d48d1c564b55ad79bb205b228.zip Qt-cf82572d50470a4d48d1c564b55ad79bb205b228.tar.gz Qt-cf82572d50470a4d48d1c564b55ad79bb205b228.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'doc/src/snippets')
-rw-r--r-- | doc/src/snippets/declarative/repeater.qml | 16 |
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] +} |