diff options
author | Topi Reinio <[email protected]> | 2025-03-03 11:54:29 +0000 |
---|---|---|
committer | Topi Reinio <[email protected]> | 2025-03-05 15:43:42 +0000 |
commit | b6a01d7d22583263a16242af604e74bbe694d766 (patch) | |
tree | b8568d43671280269c641ce691c6e7e457e5a82e /src/gui/math3d | |
parent | 351b7a31aa24a704dba09121d91cb34190892315 (diff) |
Doc: Fix incorrect \fn signatures
Several \fn signatures were either incorrect or missing qualifiers
required to make QDoc match the documentation with the declarations.
These were not caught in the CI when testing documentation builds due
to a bug in QDoc.
Pick-to: 6.9
Task-number: QTBUG-134250
Change-Id: I7a4af11d9bc3687597b348cc2d4ee15212e0281f
Reviewed-by: Thiago Macieira <[email protected]>
Diffstat (limited to 'src/gui/math3d')
-rw-r--r-- | src/gui/math3d/qmatrix4x4.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/math3d/qmatrix4x4.cpp b/src/gui/math3d/qmatrix4x4.cpp index 013908a714f..1703fa5b0fe 100644 --- a/src/gui/math3d/qmatrix4x4.cpp +++ b/src/gui/math3d/qmatrix4x4.cpp @@ -729,8 +729,7 @@ QMatrix4x4 operator/(const QMatrix4x4& matrix, float divisor) } /*! - \fn bool qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2) - \relates QMatrix4x4 + \fn bool QMatrix4x4::qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2) Returns \c true if \a m1 and \a m2 are equal, allowing for a small fuzziness factor for floating-point comparisons; false otherwise. |