aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2024-01-04 12:00:51 +0000
committerTopi Reinio <topi.reinio@qt.io>2024-01-06 05:50:39 +0000
commitdfe316ad0bacca691d14c7ddcb0d109b66c45923 (patch)
treeaa33b2171cb6872e56ac89c22a40c230c7a09c28 /examples/quick
parentf719ee6408a92439a65e82abea4403df6a844066 (diff)
Doc: Fix linking issues and missing QDoc commands
Fix multiple incorrect \l (link) command arguments that were not captured by documentation testing in CI. Add missing \endqml and \endcode commands to code snippets. Convert \sa commands that are meant to be related to specific \section commands into manual 'See also' paragraphs. Otherwise, they are listed at the bottom of the page. Pick-to: 6.7 Change-Id: Icf2a97f63b8b8cdec2d9398448d28759dabdb06b Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io>
Diffstat (limited to 'examples/quick')
-rw-r--r--examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc b/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc
index a33166870d..e28eaccc01 100644
--- a/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc
+++ b/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc
@@ -66,11 +66,11 @@
\endlist
The custom item derives from QQuickItem. Most importantly, it reimplements
- \l{QQuickItem::}updatePaintNode().
+ \l{QQuickItem::}{updatePaintNode()}.
\snippet scenegraph/customrendernode/customrender.h item
- The constructor sets the \l{QQuickItem::}ItemHasContents flag to indicate
+ The constructor sets the \l{QQuickItem::}{ItemHasContents} flag to indicate
that this is a visual item.
\snippet scenegraph/customrendernode/customrender.cpp item-ctor
@@ -97,8 +97,8 @@
\snippet scenegraph/customrendernode/customrender.cpp node
Well-behaving QSGRenderNode subclasses also reimplement
- \l{QSGRenderNode::}releaseResources(),which in this case can be a simple set
- of reset() calls.
+ \l{QSGRenderNode::}{releaseResources()}, which in this case can be a simple
+ set of reset() calls.
\snippet scenegraph/customrendernode/customrender.cpp node-release