diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-08-27 01:25:21 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-08-27 01:25:21 (GMT) |
commit | 0d12a574ca3624ecfe62d4183e02e43f3bfb6509 (patch) | |
tree | f8a7913321059b8f47a90cb5f91e546e061af1a1 /examples/declarative/velocity | |
parent | baeb25062194c9ddc36c4536662de46b6b09cd68 (diff) | |
download | Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.zip Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.tar.gz Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.tar.bz2 |
Repeater API updates.
Diffstat (limited to 'examples/declarative/velocity')
-rw-r--r-- | examples/declarative/velocity/Day.qml | 2 | ||||
-rw-r--r-- | examples/declarative/velocity/velocity.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/velocity/Day.qml b/examples/declarative/velocity/Day.qml index e488ae1..1a336b7 100644 --- a/examples/declarative/velocity/Day.qml +++ b/examples/declarative/velocity/Day.qml @@ -26,7 +26,7 @@ Rectangle { styleColor: "#dedede" } Repeater { - dataSource: Page.stickies + model: Page.stickies Item { x: Math.random() * 200 + 100 y: Math.random() * 300 + 50 diff --git a/examples/declarative/velocity/velocity.qml b/examples/declarative/velocity/velocity.qml index c2425da..8ac42e1 100644 --- a/examples/declarative/velocity/velocity.qml +++ b/examples/declarative/velocity/velocity.qml @@ -101,7 +101,7 @@ Rectangle { Row { id: Lay Repeater { - dataSource: List + model: List Component { Day { day: name |