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/listview | |
parent | baeb25062194c9ddc36c4536662de46b6b09cd68 (diff) | |
download | Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.zip Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.tar.gz Qt-0d12a574ca3624ecfe62d4183e02e43f3bfb6509.tar.bz2 |
Repeater API updates.
Diffstat (limited to 'examples/declarative/listview')
-rw-r--r-- | examples/declarative/listview/itemlist.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/listview/itemlist.qml b/examples/declarative/listview/itemlist.qml index c25ee59..061fab3 100644 --- a/examples/declarative/listview/itemlist.qml +++ b/examples/declarative/listview/itemlist.qml @@ -44,7 +44,7 @@ Rectangle { anchors.centerIn: parent spacing: 20 Repeater { - dataSource: ItemModel.count + model: ItemModel.count Rectangle { width: 5; height: 5 radius: 3 |