Fix some qdoc warnings: QTableWidgetSelectionRange

The default constructor was no longer documented, and the documentation of
the initializing constructor wasn't tied to the implementation anymore after
33fc6226865ab4b36a452e733e4519e45fea691d.

Change-Id: I5354a7e3b249f2128a6421546d4ebb375ae48160
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
This commit is contained in:
Volker Hilsheimer 2020-09-21 18:09:05 +02:00
parent 642ba2c278
commit 19da4897af

View File

@ -900,8 +900,18 @@ Qt::DropActions QTableModel::supportedDropActions() const
\sa QTableWidget \sa QTableWidget
*/ */
/*!
\fn QTableWidgetSelectionRange::QTableWidgetSelectionRange()
Constructs an empty table selection range, i.e. a range
whose rowCount() and columnCount() are 0.
\sa topRow(), leftColumn(), bottomRow(), rightColumn()
*/
/*! /*!
\fn QTableWidgetSelectionRange::QTableWidgetSelectionRange(int top, int left, int bottom, int right)
Constructs the table selection range from the given \a top, \a Constructs the table selection range from the given \a top, \a
left, \a bottom and \a right table rows and columns. left, \a bottom and \a right table rows and columns.