summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-21 18:09:05 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-21 20:09:32 +0200
commit19da4897afc6338d8ea6711d3e2b26afc3d3b3e3 (patch)
treec907007be45d4240f090c8f788e7901f17a2c274 /src
parent642ba2c278be8b655e6ccccbdf656ed05e0bbd42 (diff)
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>
Diffstat (limited to 'src')
-rw-r--r--src/widgets/itemviews/qtablewidget.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/widgets/itemviews/qtablewidget.cpp b/src/widgets/itemviews/qtablewidget.cpp
index f4f61369b6..d09b07b674 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.