summaryrefslogtreecommitdiffstats
path: root/src/gui/accessible
diff options
context:
space:
mode:
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 { };
}