summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2017-04-11 14:07:28 +0200
committerNico Vertriest <nico.vertriest@qt.io>2017-04-19 12:27:01 +0000
commit30d825f5f21265468d2aedc1bb5d6796ddaa5f3f (patch)
tree5fe5954d4e7b8ee215df475ff66463061e69432b /src/gui
parent32b92b9e21a7a684fa9c23b881cda5b913699574 (diff)
Doc: Fix link errors
qimage.cpp:2127: warning: Can't link to 'isDetached()' qmatrix4x4.cpp:1933: warning: Can't link to 'operator()()' Change-Id: I93a2ead9650faf139040173f8d3b24cfa1e730ae Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/image/qimage.cpp2
-rw-r--r--src/gui/math3d/qmatrix4x4.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/image/qimage.cpp b/src/gui/image/qimage.cpp
index 9696584f36..fffd7a1ac2 100644
--- a/src/gui/image/qimage.cpp
+++ b/src/gui/image/qimage.cpp
@@ -1071,7 +1071,7 @@ QImage::operator QVariant() const
Nothing is done if there is just a single reference.
- \sa copy(), isDetached(), {Implicit Data Sharing}
+ \sa copy(), {QImage::isDetached()}{isDetached()}, {Implicit Data Sharing}
*/
void QImage::detach()
{
diff --git a/src/gui/math3d/qmatrix4x4.cpp b/src/gui/math3d/qmatrix4x4.cpp
index b6381e1d8f..6b18e1ab03 100644
--- a/src/gui/math3d/qmatrix4x4.cpp
+++ b/src/gui/math3d/qmatrix4x4.cpp
@@ -1940,7 +1940,7 @@ 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 operator()() or data(), then QMatrix4x4 will lose track of
+ directly with {QLoggingCategory::operator()}{operator()()} or data(), then QMatrix4x4 will lose track of
the special type and will revert to the safest but least efficient
operations thereafter.
@@ -1948,7 +1948,7 @@ QMatrix4x4 QMatrix4x4::orthonormalInverse() const
the programmer can force QMatrix4x4 to recover the special type if
the elements appear to conform to one of the known optimized types.
- \sa operator()(), data(), translate()
+ \sa {QLoggingCategory::operator()}{operator()()}, data(), translate()
*/
void QMatrix4x4::optimize()
{