summaryrefslogtreecommitdiffstats
path: root/src/gui/accessible
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-24 12:06:36 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-25 04:42:27 +0200
commitca6ac03845dd5882940f50b667035692b6fd94c5 (patch)
tree70b7cc8ccf92c73436f7353f045d25e8985d77ad /src/gui/accessible
parent5471180f2b72581e21d94e0b84af9d7862b333b4 (diff)
Fix some qdoc warnings: undocumented parameters
Change-Id: I5d37f620caccbd1445c99a602b71779bdedd37d3 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/gui/accessible')
-rw-r--r--src/gui/accessible/qaccessible.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/accessible/qaccessible.cpp b/src/gui/accessible/qaccessible.cpp
index e908a4704a..e615dd8cb0 100644
--- a/src/gui/accessible/qaccessible.cpp
+++ b/src/gui/accessible/qaccessible.cpp
@@ -1085,14 +1085,15 @@ QPair< int, int > QAccessible::qAccessibleTextBoundaryHelper(const QTextCursor &
relations, unless they are handled in a specific way such as in tree views.
It will typically return the labelled-by and label relations.
- It is possible to filter the relations by using the optional parameter.
+ It is possible to filter the relations by using the optional parameter \a match.
It should never return itself.
\sa parent(), child()
*/
QList<QPair<QAccessibleInterface*, QAccessible::Relation>>
-QAccessibleInterface::relations(QAccessible::Relation /*match = QAccessible::AllRelations*/) const
+QAccessibleInterface::relations(QAccessible::Relation match) const
{
+ Q_UNUSED(match);
return { };
}