Doc: Fix undocumented parameter in QFlags::operator=()
Fixes a documentation warning: (qdoc) warning: Undocumented parameter 'other' in QFlags::operator=() This warning is reported by the latest version of QDoc, but fixing it causes another warning in the currently-provisioned QDoc. Therefore, raise the warning limit temporarily to pass the documentation check in CI. Pick-to: 6.7 Change-Id: I14863baebf712cda6f4da6d989e3ab83ffea7f85 Reviewed-by: Topi Reiniö <topi.reinio@qt.io>bb10
parent
92dc4c5c94
commit
d76828a1c7
|
|
@ -66,5 +66,5 @@ manifestmeta.highlighted.names = \
|
|||
"QtCore/Serialization Converter" \
|
||||
"QtCore/QXmlStream Bookmarks Example"
|
||||
|
||||
# Enforce zero documentation warnings
|
||||
warninglimit = 0
|
||||
# Temporarily allow warning: No such parameter 'other' in QFlags::operator=()
|
||||
warninglimit = 1
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@
|
|||
/*!
|
||||
\fn template <typename Enum> QFlags &QFlags<Enum>::operator=(const QFlags &other)
|
||||
|
||||
Assigns \e other to this object and returns a reference to this
|
||||
Assigns \a other to this object and returns a reference to this
|
||||
object.
|
||||
*/
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue