Fix documentation.

Change-Id: Id54263f408e29ed3b9d06712e39759485a42b869
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
This commit is contained in:
Frederik Gladhorn 2012-01-05 22:25:29 +01:00 committed by Qt by Nokia
parent 7e46af4a41
commit 514ef34d1f
3 changed files with 2 additions and 42 deletions

View File

@ -715,7 +715,7 @@ void QSqlRelationalTableModel::clear()
\value InnerJoin - Inner join mode, return rows when there is at least one match in both tables.
\value LeftJoin - Left join mode, returns all rows from the left table (table_name1), even if there are no matches in the right table (table_name2).
\see QSqlRelationalTableModel::setJoinMode
\sa QSqlRelationalTableModel::setJoinMode
\since 4.8
*/
@ -724,7 +724,7 @@ void QSqlRelationalTableModel::clear()
In InnerJoin mode (the default) these rows will not be showed: use the
LeftJoin mode if you want to show them.
\see QSqlRelationalTableModel::JoinMode
\sa QSqlRelationalTableModel::JoinMode
\since 4.8
*/
void QSqlRelationalTableModel::setJoinMode( QSqlRelationalTableModel::JoinMode joinMode )

View File

@ -258,13 +258,3 @@
\sa setId()
*/
/*! \fn void QButtonGroup::insert(QAbstractButton *b)
Use addButton() instead.
*/
/*! \fn void QButtonGroup::remove(QAbstractButton *b)
Use removeButton() instead.
*/

View File

@ -1250,36 +1250,6 @@ QString QDoubleSpinBoxPrivate::textFromValue(const QVariant &f) const
return q->textFromValue(f.toDouble());
}
/*!
\fn void QSpinBox::setLineStep(int step)
Use setSingleStep() instead.
*/
/*!
\fn void QSpinBox::setMaxValue(int value)
Use setMaximum() instead.
*/
/*!
\fn void QSpinBox::setMinValue(int value)
Use setMinimum() instead.
*/
/*!
\fn int QSpinBox::maxValue() const
Use maximum() instead.
*/
/*!
\fn int QSpinBox::minValue() const
Use minimum() instead.
*/
/*! \reimp */
bool QSpinBox::event(QEvent *event)
{