summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/webui
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2019-03-29 16:29:15 +0100
committerKai Koehne <kai.koehne@qt.io>2019-04-01 11:53:57 +0000
commitf564d58dcdc614f94d2fc3147f24537c35a1317e (patch)
treee147383af7a2e64bb8b6fc826910019ef95a9764 /examples/webenginewidgets/webui
parentd3c11cb4ac32f87d485e4f6bd88afdc93e9ecd16 (diff)
Doc: Avoid auto-linking the string 'WebEngine' to the QML type
Remove the previous workaround (internal \externalpage command) that was used for this purpose, and replace it with a \QWE macro that expands to the string 'Qt \WebEngine'. The backslash in the expanded string instructs QDoc not to attempt auto-linking the word. Change-Id: If4e1c95423fa07479b1af055e4760a890c0ac667 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'examples/webenginewidgets/webui')
-rw-r--r--examples/webenginewidgets/webui/doc/src/webui.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/webenginewidgets/webui/doc/src/webui.qdoc b/examples/webenginewidgets/webui/doc/src/webui.qdoc
index 47d9fbad1..949b358a7 100644
--- a/examples/webenginewidgets/webui/doc/src/webui.qdoc
+++ b/examples/webenginewidgets/webui/doc/src/webui.qdoc
@@ -35,8 +35,8 @@
\e {WebUI} demonstrates how to implement a custom scheme in a secure way.
- Aside from the built-in URL schemes, such as \c {http} and \c {qrc}, Qt
- WebEngine may be extended with \e {custom schemes} by creating \e {custom
+ Aside from the built-in URL schemes, such as \c {http} and \c {qrc},
+ \QWE may be extended with \e {custom schemes} by creating \e {custom
scheme handlers}. This example shows:
\list
@@ -111,7 +111,7 @@
made already at the top of the \c {main} function. This is so because custom
schemes need to be registered as early as possible so that that they can be
passed to all subprocesses. Specifically, custom schemes need to be registered
- before any other Qt WebEngine classes are instantiated by the application.
+ before any other \QWE classes are instantiated by the application.
\section1 Handling Requests