summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2021-04-12 13:53:53 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-04-13 10:14:51 +0000
commit56e8bac4ce8039321637f473fcda1d01a9dfb8bd (patch)
tree5dee68ff8e0ed493a0dd194b51caf9b5147926fc
parentd60157ef90cbe57146df3942cca878298836b0b6 (diff)
Fix qdoc warning and broken link
The link to qobject_cast was overly specific, so no link was generated. Change-Id: I74990ee89997a5f91d617db1eb116a2bb3bd4864 Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Nico Vertriest <nico.vertriest@qt.io> (cherry picked from commit 4f2d4d5ade9326b7714a73773cd08dd6013681a2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--examples/designer/doc/src/containerextension.qdoc2
-rw-r--r--examples/designer/doc/src/taskmenuextension.qdoc2
-rw-r--r--examples/designer/doc/src/worldtimeclockplugin.qdoc2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/designer/doc/src/containerextension.qdoc b/examples/designer/doc/src/containerextension.qdoc
index b369ba50b..6b3f9c989 100644
--- a/examples/designer/doc/src/containerextension.qdoc
+++ b/examples/designer/doc/src/containerextension.qdoc
@@ -181,7 +181,7 @@
using multiple inheritance, to ensure that all the interfaces
(i.e. the classes that doesn't inherit Q_OBJECT) are made known to
the meta object system using the Q_INTERFACES() macro. This
- enables \QD to use \l {qobject_cast(QObject * object)} to query for supported
+ enables \QD to use qobject_cast() to query for supported
interfaces using nothing but a QObject pointer.
\section1 MultiPageWidgetPlugin Class Implementation
diff --git a/examples/designer/doc/src/taskmenuextension.qdoc b/examples/designer/doc/src/taskmenuextension.qdoc
index a480fa3a8..6b5df136a 100644
--- a/examples/designer/doc/src/taskmenuextension.qdoc
+++ b/examples/designer/doc/src/taskmenuextension.qdoc
@@ -171,7 +171,7 @@
using multiple inheritance, to ensure that all the interfaces
(i.e. the classes that doesn't inherit Q_OBJECT) are made known to
the meta object system using the Q_INTERFACES() macro. This
- enables \QD to use \l {qobject_cast(QObject * object)} to query for supported
+ enables \QD to use qobject_cast() to query for supported
interfaces using nothing but a QObject pointer.
\section1 TicTacToePlugin Class Implementation
diff --git a/examples/designer/doc/src/worldtimeclockplugin.qdoc b/examples/designer/doc/src/worldtimeclockplugin.qdoc
index 99a452867..19ec83f6b 100644
--- a/examples/designer/doc/src/worldtimeclockplugin.qdoc
+++ b/examples/designer/doc/src/worldtimeclockplugin.qdoc
@@ -121,7 +121,7 @@
using multiple inheritance, to ensure that all the interfaces
(i.e. the classes that doesn't inherit Q_OBJECT) are made known to
the meta object system using the Q_INTERFACES() macro. This
- enables \QD to use \l {qobject_cast(QObject * object)} to query for supported
+ enables \QD to use qobject_cast() to query for supported
interfaces using nothing but a QObject pointer.
The implementation of the \c WorldTimeClockPlugin is also