diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-12-14 03:59:36 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-12-14 06:40:48 (GMT) |
commit | c34225b62ea2dd2a545baf2ade41629be6a55473 (patch) | |
tree | 4455fef897863728a2604f96016f2dc57244e937 /src/declarative | |
parent | f58cf707dd5668ca2849f457e951a9cef7d1d544 (diff) | |
download | Qt-c34225b62ea2dd2a545baf2ade41629be6a55473.zip Qt-c34225b62ea2dd2a545baf2ade41629be6a55473.tar.gz Qt-c34225b62ea2dd2a545baf2ade41629be6a55473.tar.bz2 |
Clarify that XmlListModel is read only
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/util/qdeclarativexmllistmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/util/qdeclarativexmllistmodel.cpp b/src/declarative/util/qdeclarativexmllistmodel.cpp index ce5b483..49a12b1 100644 --- a/src/declarative/util/qdeclarativexmllistmodel.cpp +++ b/src/declarative/util/qdeclarativexmllistmodel.cpp @@ -503,9 +503,9 @@ void QDeclarativeXmlListModelPrivate::clear_role(QDeclarativeListProperty<QDecla \qmlclass XmlListModel QDeclarativeXmlListModel \ingroup qml-working-with-data \since 4.7 - \brief The XmlListModel element is used to specify a model using XPath expressions. + \brief The XmlListModel element is used to specify a read-only model using XPath expressions. - XmlListModel is used to create a model from XML data. It can be used as a data source + XmlListModel is used to create a read-only model from XML data. It can be used as a data source for view elements (such as ListView, PathView, GridView) and other elements that interact with model data (such as \l Repeater). |