QSqlTableModel::insertRecord(): correct documentation

Change-Id: I35680f842a650493cf530c0b74894e2b45aa3c6e
Reviewed-by: Yunqiao Yin <charles.yin@nokia.com>
This commit is contained in:
Mark Brand 2012-02-08 00:40:51 +01:00 committed by Qt by Nokia
parent 76804c842f
commit 40afbf3deb

View File

@ -1062,11 +1062,11 @@ bool QSqlTableModel::insertRows(int row, int count, const QModelIndex &parent)
}
/*!
Inserts the \a record after \a row. If \a row is negative, the
record will be appended to the end. Calls insertRows() and
Inserts the \a record at position \a row. If \a row is negative,
the record will be appended to the end. Calls insertRows() and
setRecord() internally.
Returns true if the row could be inserted, otherwise false.
Returns true if the record could be inserted, otherwise false.
\sa insertRows(), removeRows()
*/