summaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc
diff options
context:
space:
mode:
authorAnu Aliyas <anu.aliyas@qt.io>2024-01-15 13:42:31 +0100
committerAnu Aliyas <anu.aliyas@qt.io>2024-01-17 10:18:15 +0100
commit549ede011a36c947d67419a77bbdd2b8805647d5 (patch)
tree15cd1ec1127809c8b258d16f74e88a24e8ebe77f /examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc
parent956601e7ce199d12720e582a2b717d0aac9eb9ae (diff)
Update QWebEngineWebAuthUxRequest based on 6.7 API review comment
- Modified WebAuthUXState as enum class - Renamed QWebEngineWebAuthUXRequest as QWebEngineWebAuthUxRequest - Renamed QWebEngineWebAuthPINRequest as QWebEngineWebAuthPinRequest - Replaced all occurrence of UX and PIN with Ux and Pin respectively Fixes: 6.7 Change-Id: Iaf0b4c93e0dfa3508a604f7d6562c4401ff800af Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc')
-rw-r--r--examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc b/examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc
index 8f72e67cd..1dc209c2e 100644
--- a/examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc
+++ b/examples/webenginequick/quicknanobrowser/doc/src/quicknanobrowser.qdoc
@@ -146,17 +146,17 @@
\section1 Handling WebAuth/FIDO UX Requests
- We use the \c onWebAuthUXRequested() signal handler to handle requests for
- WebAuth/FIDO UX. The \c request parameter is an instance of WebEngineWebAuthUXRequest
+ We use the \c onWebAuthUxRequested() signal handler to handle requests for
+ WebAuth/FIDO UX. The \c request parameter is an instance of WebEngineWebAuthUxRequest
which contains UX request details and APIs required to process the request.
We use it to construct WebAuthUX dialog and initiates the UX request flow.
\quotefromfile webenginequick/quicknanobrowser/BrowserWindow.qml
- \skipto onWebAuthUXRequested
+ \skipto onWebAuthUxRequested
\printuntil }
- The \l WebEngineWebAuthUXRequest object periodically emits the \l
- {WebEngineWebAuthUXRequest::}{stateChanged} signal to notify potential
+ The \l WebEngineWebAuthUxRequest object periodically emits the \l
+ {WebEngineWebAuthUxRequest::}{stateChanged} signal to notify potential
observers of the current WebAuth UX states. The observers update the WebAuth
dialog accordingly. We use onStateChanged() signal handler to handle
state change requests. See \c WebAuthDialog.qml for an example