summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-24 01:19:13 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-24 01:19:13 (GMT)
commit30d5122d981616b085eb5ab24d45b8bfb4496b3b (patch)
tree99570a4df8dd2f23a1365502a2f6f4d55a00d92c /src
parent496135c62e94f9905e5985d8ef899d00e21f6e15 (diff)
parent27f6749f80dffe3876e615997279f7dc13d02de7 (diff)
downloadQt-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.cpp6
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