summaryrefslogtreecommitdiffstats
path: root/src/corelib/global
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2020-12-01 13:00:44 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-12-01 18:43:30 +0000
commit3356881860608325d36f6afb1f551691fb38fe35 (patch)
treedc926fd01228c3a95df968dd17d354d148c10ced /src/corelib/global
parentebbb7cdfabc21e8176d3cb0b5a56fac041cde36f (diff)
Fix documentation of QPartialOrdering
qdoc did not find the hidden friend comparison functions at gave errors like qcompare.qdoc:82: (qdoc) warning: clang couldn't find function when parsing \fn bool operator==(QPartialOrdering p1, QPartialOrdering p2) noexcept This patch documents them as if they were class members to fix this. Document the constants as \variables. Task-number: QTBUG-88533 Change-Id: Ife56f16894e454f324060aeb73f66aba2d45e530 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit c4d488eeb9f08d48eed76c941ac36b7ab05515ea) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/corelib/global')
-rw-r--r--src/corelib/global/qcompare.qdoc22
1 files changed, 6 insertions, 16 deletions
diff --git a/src/corelib/global/qcompare.qdoc b/src/corelib/global/qcompare.qdoc
index 80d402f67c..795e908ecf 100644
--- a/src/corelib/global/qcompare.qdoc
+++ b/src/corelib/global/qcompare.qdoc
@@ -80,16 +80,14 @@
*/
/*!
- \fn bool operator==(QPartialOrdering p1, QPartialOrdering p2) noexcept
- \relates QPartialOrdering
+ \fn bool QPartialOrdering::operator==(QPartialOrdering p1, QPartialOrdering p2) noexcept
Return true if \a p1 and \a p2 represent the same result;
otherwise, returns false.
*/
/*!
- \fn bool operator!=(QPartialOrdering p1, QPartialOrdering p2) noexcept
- \relates QPartialOrdering
+ \fn bool QPartialOrdering::operator!=(QPartialOrdering p1, QPartialOrdering p2) noexcept
Return true if \a p1 and \a p2 represent different results;
otherwise, returns true.
@@ -114,33 +112,25 @@
*/
/*!
- \value QPartialOrdering::Less
- \relates QPartialOrdering
-
+ \variable QPartialOrdering::Less
Represents the result of a comparison where the value on the left
hand side is less than the value on right hand side.
*/
/*!
- \value QPartialOrdering::Equivalent
- \relates QPartialOrdering
-
+ \variable QPartialOrdering::Equivalent
Represents the result of a comparison where the value on the left
hand side is equivalent to the value on right hand side.
*/
/*!
- \value QPartialOrdering::Greater
- \relates QPartialOrdering
-
+ \variable QPartialOrdering::Greater
Represents the result of a comparison where the value on the left
hand side is greater than the value on right hand side.
*/
/*!
- \value QPartialOrdering::Unordered
- \relates QPartialOrdering
-
+ \variable QPartialOrdering::Unordered
Represents the result of a comparison where the value on the left
hand side is not ordered with respect to the value on right hand
side.