diff options
author | Topi Reinio <[email protected]> | 2020-11-04 13:06:48 +0100 |
---|---|---|
committer | Topi Reinio <[email protected]> | 2020-11-05 09:00:41 +0100 |
commit | 9eea418e1a13e0cee239903103dbccb83e936c40 (patch) | |
tree | ca43a44dddd6932f4b265b605bcf00861a8a92d4 /src/qmlmodels/qqmlobjectmodel.cpp | |
parent | 4fd12eef18204920b0974e7252eb6d97c4f1d485 (diff) |
Doc: Fix documentation warnings for QML Models and Test modules
Fixes: QTBUG-88156
Change-Id: Ie9723f1bb612f4603d15455a0320cc01b27ff181
Reviewed-by: Paul Wicking <[email protected]>
Diffstat (limited to 'src/qmlmodels/qqmlobjectmodel.cpp')
-rw-r--r-- | src/qmlmodels/qqmlobjectmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmlmodels/qqmlobjectmodel.cpp b/src/qmlmodels/qqmlobjectmodel.cpp index dac868a0a2..b498f3567d 100644 --- a/src/qmlmodels/qqmlobjectmodel.cpp +++ b/src/qmlmodels/qqmlobjectmodel.cpp @@ -396,7 +396,7 @@ void QQmlObjectModel::insert(int index, QObject *object) \qmlmethod QtQml.Models::ObjectModel::move(int from, int to, int n = 1) \since 5.6 - Moves \e n items \a from one position \a to another. + Moves \a n items \a from one position \a to another. The from and to ranges must exist; for example, to move the first 3 items to the end of the model: @@ -423,7 +423,7 @@ void QQmlObjectModel::move(int from, int to, int n) \qmlmethod QtQml.Models::ObjectModel::remove(int index, int n = 1) \since 5.6 - Removes \e n items at \a index from the model. + Removes \a n items at \a index from the model. \sa clear() */ |