diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-08-24 01:19:13 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-08-24 01:19:13 (GMT) |
commit | 30d5122d981616b085eb5ab24d45b8bfb4496b3b (patch) | |
tree | 99570a4df8dd2f23a1365502a2f6f4d55a00d92c /src | |
parent | 496135c62e94f9905e5985d8ef899d00e21f6e15 (diff) | |
parent | 27f6749f80dffe3876e615997279f7dc13d02de7 (diff) | |
download | Qt-30d5122d981616b085eb5ab24d45b8bfb4496b3b.zip Qt-30d5122d981616b085eb5ab24d45b8bfb4496b3b.tar.gz Qt-30d5122d981616b085eb5ab24d45b8bfb4496b3b.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/util/qmllistmodel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/util/qmllistmodel.cpp b/src/declarative/util/qmllistmodel.cpp index e2575ab..51b0dae 100644 --- a/src/declarative/util/qmllistmodel.cpp +++ b/src/declarative/util/qmllistmodel.cpp @@ -72,7 +72,7 @@ struct ListModelData \qmlclass ListModel \brief The ListModel element defines a free-form list data source. - The ListModel is a simple hierarchy of items containing data roles. + The ListModel is a simple hierarchy of elements containing data roles. For example: \code @@ -93,8 +93,8 @@ struct ListModelData } \endcode - Item roles (properties) must begin with a lower-case letter. The above example defines a - ListModel containing three items, with the roles "name" and "cost". + Roles (properties) must begin with a lower-case letter. The above example defines a + ListModel containing three elements, with the roles "name" and "cost". The defined model can be used in views such as ListView: \code |