diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-07-09 12:08:30 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-07-09 12:08:30 (GMT) |
commit | 5f2437ae9a11c360139599b4d4b01270cd276a52 (patch) | |
tree | 6628d8be7d78e90a7de642425af2adfcf71c5f49 /src/corelib | |
parent | f0900258cac9bb58ba1bfa4178e9e774408dc546 (diff) | |
download | Qt-5f2437ae9a11c360139599b4d4b01270cd276a52.zip Qt-5f2437ae9a11c360139599b4d4b01270cd276a52.tar.gz Qt-5f2437ae9a11c360139599b4d4b01270cd276a52.tar.bz2 |
doc: Fixed several qdoc warnings.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/kernel/qabstractitemmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qabstractitemmodel.cpp b/src/corelib/kernel/qabstractitemmodel.cpp index 464a91c..e3fce18 100644 --- a/src/corelib/kernel/qabstractitemmodel.cpp +++ b/src/corelib/kernel/qabstractitemmodel.cpp @@ -2547,7 +2547,7 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star For example, as shown in the diagram, we move three rows from row 2 to 4 in the source, so \a sourceFirst is 2 and \a sourceLast is 4. - We move those items to above row 2 in the destination, so \a destinationRow is 2. + We move those items to above row 2 in the destination, so \a destinationChild is 2. \snippet doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp 6 @@ -2558,7 +2558,7 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star \o To append rows to another parent, move them to after the last row. For example, as shown in the diagram, we move three rows to a - collection of 6 existing rows (ending in row 5), so \a destinationStart is 6: + collection of 6 existing rows (ending in row 5), so \a destinationChild is 6: \snippet doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp 7 |