summaryrefslogtreecommitdiffstats
path: root/src/gui/math3d
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2021-01-28 09:39:36 +0100
committerNico Vertriest <nico.vertriest@qt.io>2021-02-18 07:03:19 +0000
commit27f2ef24cde895da7000773366020ab228abcd5e (patch)
tree5ab96f3168a535169a11018bff64fd9902977666 /src/gui/math3d
parentf731802ba82ad260e155783e0427fb3f6ebd99fe (diff)
Doc: Fix documentation warnings qtbase
Task-number: QTBUG-90662 Change-Id: If31847f8f2b8b57a8a8624d0406a030b5752f1c8 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/gui/math3d')
-rw-r--r--src/gui/math3d/qmatrix4x4.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/math3d/qmatrix4x4.cpp b/src/gui/math3d/qmatrix4x4.cpp
index 947af641d1..76348144ff 100644
--- a/src/gui/math3d/qmatrix4x4.cpp
+++ b/src/gui/math3d/qmatrix4x4.cpp
@@ -1923,15 +1923,15 @@ QMatrix4x4 QMatrix4x4::orthonormalInverse() const
Normally the QMatrix4x4 class keeps track of this special type internally
as operations are performed. However, if the matrix is modified
- directly with \l {QMatrix4x4::}{operator()()} or data(), then
- QMatrix4x4 will lose track of the special type and will revert to the
- safest but least efficient operations thereafter.
+ directly with operator()(int, int) or data(), then QMatrix4x4 will
+ lose track of the special type and will revert to the safest but least
+ efficient operations thereafter.
By calling optimize() after directly modifying the matrix,
the programmer can force QMatrix4x4 to recover the special type if
the elements appear to conform to one of the known optimized types.
- \sa {QMatrix4x4::}{operator()()}, data(), translate()
+ \sa operator()(int, int), data(), translate()
*/
void QMatrix4x4::optimize()
{