Fix some qdoc warnings: undocumented parameters

Change-Id: I5d37f620caccbd1445c99a602b71779bdedd37d3
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
This commit is contained in:
Volker Hilsheimer 2020-09-24 12:06:36 +02:00
parent 5471180f2b
commit ca6ac03845
2 changed files with 4 additions and 3 deletions

View File

@ -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 { };
}

View File

@ -345,7 +345,7 @@ ulong QEventPoint::lastTimestamp() const
{ return d->lastTimestamp; }
/*!
Sets the accepted state of the point.
Sets the accepted state of the point to \a accepted.
In widget-based applications, this function is not used so far, because
it's only meaningful for a widget to accept or reject a complete QInputEvent.