summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2024-02-07 16:35:52 +0100
committerDominik Holland <dominik.holland@qt.io>2024-02-07 18:01:28 +0100
commitd07deb8ba903e748dee7240b5ef6f0129eb4018d (patch)
treef22b8006d1964e5e7916b854d66d63ed78b901ed
parentd929c88a1841695412b1feecb8bc0db28a7249b8 (diff)
doc: Fix broken links and code embeddings
Fixes: QTBUG-121740 Fixes: QTBUG-121778 Pick-to: 6.7 6.6 6.5 Change-Id: Ia165a8a95a67f8a47d5f17380d2ae888cdf2d6da Reviewed-by: Robert Griebl <robert.griebl@qt.io>
-rw-r--r--src/interfaceframework/doc/src/ifcodegen/template-syntax.qdoc2
-rw-r--r--src/interfaceframework/qifabstractfeature.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaceframework/doc/src/ifcodegen/template-syntax.qdoc b/src/interfaceframework/doc/src/ifcodegen/template-syntax.qdoc
index dc26a064..4d947cae 100644
--- a/src/interfaceframework/doc/src/ifcodegen/template-syntax.qdoc
+++ b/src/interfaceframework/doc/src/ifcodegen/template-syntax.qdoc
@@ -14,7 +14,7 @@
\nextpage Use the Generator
This page is about the Jinja template engine. While the most detailed description of the template
-language can be found in the \l {https://jinja.palletsprojects.com/en/3.1.x/templates/}}{Jinja documentation},
+language can be found in the \l {https://jinja.palletsprojects.com/en/3.1.x/templates/}{Jinja documentation},
some basic concepts are given in this article.
diff --git a/src/interfaceframework/qifabstractfeature.cpp b/src/interfaceframework/qifabstractfeature.cpp
index 603a922f..7c454b92 100644
--- a/src/interfaceframework/qifabstractfeature.cpp
+++ b/src/interfaceframework/qifabstractfeature.cpp
@@ -740,9 +740,9 @@ bool QIfAbstractFeature::acceptServiceObject(QIfServiceObject *serviceObject)
When reimplementing please keep in mind to connect all signals before calling this function. e.g.
- /code
+ \code
void SimpleFeature::connectToServiceObject(QIfServiceObject *serviceObject)
- {
+ {
SimpleFeatureBackendInterface *backend = backend(serviceObject);
if (!backend)
return;
@@ -755,8 +755,8 @@ bool QIfAbstractFeature::acceptServiceObject(QIfServiceObject *serviceObject)
QIfAbstractFeature::connectToServiceObject(serviceObject);
// Additional initialization functions can be added here
- }
- /endcode
+ }
+ \endcode
\sa acceptServiceObject(), disconnectFromServiceObject(), clearServiceObject()
*/