summaryrefslogtreecommitdiffstats
path: root/src/webenginewidgets/api/qwebenginepage.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-09-11 14:39:43 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-09-12 11:58:11 +0000
commit7de23e9fbb4c48152de5c1d26ed34cd68666aa30 (patch)
tree3e87af7e1995c80334abc4c94721df8e92668e25 /src/webenginewidgets/api/qwebenginepage.cpp
parenta5e680c2ef404693870aedfb10f22ffc83cd38e7 (diff)
Correct cert to certificate
Change-Id: I7534aa6cd0c2a95403ad997095d5de76216f228e Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'src/webenginewidgets/api/qwebenginepage.cpp')
-rw-r--r--src/webenginewidgets/api/qwebenginepage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webenginewidgets/api/qwebenginepage.cpp b/src/webenginewidgets/api/qwebenginepage.cpp
index 8362f190e..3d8f9389a 100644
--- a/src/webenginewidgets/api/qwebenginepage.cpp
+++ b/src/webenginewidgets/api/qwebenginepage.cpp
@@ -1679,7 +1679,7 @@ void QWebEnginePagePrivate::selectClientCert(const QSharedPointer<ClientCertSele
{
#if QT_CONFIG(ssl)
Q_Q(QWebEnginePage);
- QWebEngineClientCertSelection certSelection(controller);
+ QWebEngineClientCertificateSelection certSelection(controller);
Q_EMIT q->selectClientCertificate(certSelection);
#else
@@ -1689,19 +1689,19 @@ void QWebEnginePagePrivate::selectClientCert(const QSharedPointer<ClientCertSele
#if QT_CONFIG(ssl)
/*!
- \fn void QWebEnginePage::selectClientCertificate(QWebEngineClientCertSelection clientCertSelection)
+ \fn void QWebEnginePage::selectClientCertificate(QWebEngineClientCertificateSelection clientCertificateSelection)
\since 5.12
This signal is emitted when a web site requests an SSL client certificate, and one or more were
found in system's client certificate store.
Handling the signal is asynchronous, and loading will be waiting until a certificate is selected,
- or the last copy of \a clientCertSelection is destroyed.
+ or the last copy of \a clientCertificateSelection is destroyed.
- If the signal is not handled, \a clientCertSelection is automatically destroyed, and loading
+ If the signal is not handled, \a clientCertificateSelection is automatically destroyed, and loading
will continue without a client certificate.
- \sa QWebEngineClientCertSelection
+ \sa QWebEngineClientCertificateSelection
*/
#endif