From 19da4897afc6338d8ea6711d3e2b26afc3d3b3e3 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Mon, 21 Sep 2020 18:09:05 +0200 Subject: [PATCH] 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 --- src/widgets/itemviews/qtablewidget.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/widgets/itemviews/qtablewidget.cpp b/src/widgets/itemviews/qtablewidget.cpp index f4f61369b64..d09b07b6746 100644 --- a/src/widgets/itemviews/qtablewidget.cpp +++ b/src/widgets/itemviews/qtablewidget.cpp @@ -900,8 +900,18 @@ Qt::DropActions QTableModel::supportedDropActions() const \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 left, \a bottom and \a right table rows and columns.