summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmllistmodel.cpp
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-24 01:07:32 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-24 01:07:32 (GMT)
commit25aa10e773db72a66aa18dbd297bd24ad810e241 (patch)
tree3b6ba2c4eed59cd624dfb98e69de468488aed289 /src/declarative/util/qmllistmodel.cpp
parent644ea311d20325c2f27834d76320f7a7886c1a0c (diff)
downloadQt-25aa10e773db72a66aa18dbd297bd24ad810e241.zip
Qt-25aa10e773db72a66aa18dbd297bd24ad810e241.tar.gz
Qt-25aa10e773db72a66aa18dbd297bd24ad810e241.tar.bz2
Doc tweak.
Diffstat (limited to 'src/declarative/util/qmllistmodel.cpp')
-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