Fix copy/paste error in QAbstractItemModel::insertRow docu.

This method is not virtual.

Change-Id: I1c82a63af07d7e78e7a572c0dfcfb2b82122d421
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
This commit is contained in:
David Faure 2012-03-08 16:04:16 +01:00 committed by Qt by Nokia
parent d26ef66a66
commit e02c396acb

View File

@ -1223,12 +1223,11 @@ void QAbstractItemModelPrivate::columnsRemoved(const QModelIndex &parent,
/*!
\fn bool QAbstractItemModel::insertRow(int row, const QModelIndex &parent)
\note The base class implementation of this function does nothing and
returns false.
Inserts a single row before the given \a row in the child items of the
\a parent specified.
\note This function calls the virtual method insertRows.
Returns true if the row is inserted; otherwise returns false.
\sa insertRows() insertColumn() removeRow()