diff options
author | Kai Koehne <kai.koehne@theqtcompany.com> | 2016-06-27 12:34:41 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@qt.io> | 2016-06-28 10:40:32 +0000 |
commit | 04c1f1a0039c7e90f31f5a8245b1d78ceff3a687 (patch) | |
tree | 1666e1096852965d49382440e3a1c63fc2e15f5d | |
parent | 2a9bf8ac5d33927d6bdd2ea7c42c2521ae672255 (diff) | |
download | qtwebengine-04c1f1a0039c7e90f31f5a8245b1d78ceff3a687.tar.gz |
Doc: Do not explicitly mention names of signal handlers
You can also connect arbitrary methods using the Connections type, or
the connect() method. Anyhow, this is standard QML behavior, so no
need to mention it in every signal.
Change-Id: I419c74eee7ce190c44336d9f25c1a3aa30f36ab4
Reviewed-by: Michal Klocek <michal.klocek@theqtcompany.com>
Reviewed-by: Topi Reiniƶ <topi.reinio@theqtcompany.com>
-rw-r--r-- | src/webengine/doc/src/webengineview.qdoc | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/webengine/doc/src/webengineview.qdoc b/src/webengine/doc/src/webengineview.qdoc index bdee3da8e..5359c0349 100644 --- a/src/webengine/doc/src/webengineview.qdoc +++ b/src/webengine/doc/src/webengineview.qdoc @@ -477,7 +477,6 @@ \qmlsignal WebEngineView::loadingChanged(WebEngineLoadRequest loadRequest) This signal is emitted when a page load begins, ends, or fails. - The corresponding handler is \c onLoadingChanged. When handling the signal with \c onLoadingChanged, various read-only parameters are available on the \a loadRequest: @@ -514,8 +513,6 @@ The certificate error can be handled by using the methods of the WebEngineCertificateError type. - - The corresponding handler is \c onCertificateError. */ /*! @@ -526,8 +523,6 @@ event. This event may also occur in touch interfaces for \c{mouseover} events that are not cancelled with \c{preventDefault()}. \a{hoveredUrl} provides the link's location. - - The corresponding handler is \c onLinkHovered. */ /*! @@ -540,8 +535,8 @@ \a level indicates the severity of the event that triggered the message, that is, whether it was triggered by an error or a less severe event. - The corresponding handler is \c onJavaScriptConsoleMessage. If no handler is specified, - the view will log the messages into a \c js \l{QLoggingCategory}{logging category}. + If no handler is specified, the view will log the messages into a \c js + \l{QLoggingCategory}{logging category}. \sa{Console Logging} */ @@ -562,8 +557,6 @@ \snippet snippets/qtwebengine_webengineview_newviewrequested.qml 0 - The corresponding handler is \c onNewViewRequested. - \sa NewViewDestination, {WebEngine Quick Nano Browser} */ @@ -574,8 +567,6 @@ This signal is emitted when the web page requests fullscreen mode through the JavaScript API. - The corresponding handler is \c onFullScreenRequested. - \sa isFullScreen */ @@ -614,8 +605,6 @@ This signal is emitted whenever the page requests the web browser window to be closed, for example through the JavaScript \c{window.close()} call. - - The corresponding handler is \c onWindowCloseRequested. */ /*! |