aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qquicklistmodel.cpp
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2012-04-26 16:15:24 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-27 11:40:19 +0200
commitd5295d1c822745b1a1dd80c5521bbda61d4a3eda (patch)
treeb3ddfe110c4988b371e02d352a30640b41c7f03f /src/qml/qml/qquicklistmodel.cpp
parentb765e3a84bc531878a5cc0d451451a94565b13f8 (diff)
Doc: Fixing errors due to incorrect QDoc commands.
-\hint, \QQV are not supported -fixed \a -\sa requires a comma to separate entries Change-Id: Iae68fd92d7fbc5988e4ec801ab095fd717728036 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/qml/qml/qquicklistmodel.cpp')
-rw-r--r--src/qml/qml/qquicklistmodel.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/qml/qml/qquicklistmodel.cpp b/src/qml/qml/qquicklistmodel.cpp
index 5f12036c37..37f6e86cb8 100644
--- a/src/qml/qml/qquicklistmodel.cpp
+++ b/src/qml/qml/qquicklistmodel.cpp
@@ -1382,7 +1382,6 @@ QQuickListModelParser::ListInstruction *QQuickListModelParser::ListModelData::in
\snippet doc/src/snippets/qml/listmodel.qml 0
- \clearfloat
Roles (properties) in each element must begin with a lower-case letter and
should be common to all elements in a model. The ListElement documentation
provides more guidelines for how elements should be defined.
@@ -1407,7 +1406,6 @@ QQuickListModelParser::ListInstruction *QQuickListModelParser::ListModelData::in
\snippet doc/src/snippets/qml/listmodel-nested.qml delegate
- \clearfloat
\section1 Modifying List Models
The content of a ListModel may be created and modified using the clear(),
@@ -1769,7 +1767,7 @@ int QQuickListModel::count() const
Deletes all content from the model.
- \sa append() remove()
+ \sa append(), remove()
*/
void QQuickListModel::clear()
{
@@ -1833,7 +1831,7 @@ void QQuickListModel::remove(QQmlV8Function *args)
The \a index must be to an existing item in the list, or one past
the end of the list (equivalent to append).
- \sa set() append()
+ \sa set(), append()
*/
void QQuickListModel::insert(QQmlV8Function *args)
@@ -1944,7 +1942,7 @@ void QQuickListModel::move(int from, int to, int n)
fruitModel.append({"cost": 5.95, "name":"Pizza"})
\endcode
- \sa set() remove()
+ \sa set(), remove()
*/
void QQuickListModel::append(QQmlV8Function *args)
{