From 77056f91cd1dd9e88df04ff646c98213270b49b9 Mon Sep 17 00:00:00 2001 From: Sze Howe Koh Date: Sun, 8 Sep 2013 18:57:09 +0800 Subject: Doc: Fix copy+paste errors for QAbstractItemModel Change-Id: Ia462544cc86870d9870ae1be3b4f9135c9efe45c Reviewed-by: Stephen Kelly --- src/corelib/itemmodels/qabstractitemmodel.cpp | 6 +++--- src/widgets/doc/src/model-view-programming.qdoc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/corelib/itemmodels/qabstractitemmodel.cpp b/src/corelib/itemmodels/qabstractitemmodel.cpp index 4162e843a7..fb3d48000d 100644 --- a/src/corelib/itemmodels/qabstractitemmodel.cpp +++ b/src/corelib/itemmodels/qabstractitemmodel.cpp @@ -1303,12 +1303,12 @@ void QAbstractItemModel::resetInternalData() */ /*! - \fn bool QAbstractItemModel::moveRow(const QModelIndex &sourceParent, int sourceColumn, const QModelIndex &destinationParent, int destinationChild) + \fn bool QAbstractItemModel::moveRow(const QModelIndex &sourceParent, int sourceRow, const QModelIndex &destinationParent, int destinationChild) - On models that support this, moves \a sourceColumn from \a sourceParent to \a destinationChild under + On models that support this, moves \a sourceRow from \a sourceParent to \a destinationChild under \a destinationParent. - Returns true if the columns were successfully moved; otherwise returns + Returns true if the rows were successfully moved; otherwise returns false. \sa moveRows(), moveColumn() diff --git a/src/widgets/doc/src/model-view-programming.qdoc b/src/widgets/doc/src/model-view-programming.qdoc index 377ecf204e..d0d925e74a 100644 --- a/src/widgets/doc/src/model-view-programming.qdoc +++ b/src/widgets/doc/src/model-view-programming.qdoc @@ -2033,14 +2033,14 @@ \li Used to remove rows and the items of data they contain from all types of model. Implementations must call \l{QAbstractItemModel::beginRemoveRows()}{beginRemoveRows()} - \e before inserting new columns into any underlying data structures, and call + \e before rows are removed from any underlying data structures, and call \l{QAbstractItemModel::endRemoveRows()}{endRemoveRows()} \e{immediately afterwards}. \row \li \l{QAbstractItemModel::insertColumns()}{insertColumns()} \li Used to add new columns and items of data to table models and hierarchical models. Implementations must call \l{QAbstractItemModel::beginInsertColumns()}{beginInsertColumns()} \e before - rows are removed from any underlying data structures, and call + inserting new columns into any underlying data structures, and call \l{QAbstractItemModel::endInsertColumns()}{endInsertColumns()} \e{immediately afterwards}. \row \li \l{QAbstractItemModel::removeColumns()}{removeColumns()} -- cgit v1.2.3