summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebenginecertificateerror.cpp
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2021-06-30 14:04:31 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-07-07 15:21:28 +0000
commita864df85a9e46c5dcd7a03a444d3b8a7717946f7 (patch)
tree0c70ac6ece86802a0ad3bc42f7f2bd51edd84eee /src/core/api/qwebenginecertificateerror.cpp
parentbbab484dc45ae2391065d07e1f68027bb53e44d9 (diff)
Doc: Fix documentation issues for Qt WebEngine
API and documentation changes since 5.15 caused multiple warnings from QDoc; this change addresses most of them. Some warnings indicate missing documentation, those issues still remain. Change-Id: I96be38b7daac37a7e35c149b4b3ec3f18c4415c9 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io> (cherry picked from commit c248844b3b8ee004800606d1a6c6e6d6bee31738) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/core/api/qwebenginecertificateerror.cpp')
-rw-r--r--src/core/api/qwebenginecertificateerror.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/api/qwebenginecertificateerror.cpp b/src/core/api/qwebenginecertificateerror.cpp
index 40c9a1c7b..e20b55f81 100644
--- a/src/core/api/qwebenginecertificateerror.cpp
+++ b/src/core/api/qwebenginecertificateerror.cpp
@@ -99,12 +99,14 @@ QWebEngineCertificateError::~QWebEngineCertificateError() = default;
used for interception by an entity other the device owner. (Added in
5.15)
\value SslObsoleteVersion The connection uses an obsolete version of SSL/TLS. (Added in Qt 6.0)
+ \value CertificateSymantecLegacy The certificate is a legacy Symantec one that's no longer valid. (Added in Qt 6.0)
*/
/*!
- Returns whether this error can be overridden and accepted.
+ \property QWebEngineCertificateError::overridable
+ \brief Whether this error can be overridden and accepted.
- \sa error(), description()
+ \sa description()
*/
bool QWebEngineCertificateError::isOverridable() const
{
@@ -114,7 +116,7 @@ bool QWebEngineCertificateError::isOverridable() const
/*!
Returns the URL that triggered the error.
- \sa error(), description()
+ \sa description()
*/
QUrl QWebEngineCertificateError::url() const
{
@@ -134,7 +136,7 @@ QWebEngineCertificateError::Type QWebEngineCertificateError::type() const
/*!
Returns a short localized human-readable description of the error.
- \sa error(), url(), isOverridable()
+ \sa url(), isOverridable()
*/
QString QWebEngineCertificateError::description() const
{
@@ -152,7 +154,7 @@ QString QWebEngineCertificateError::description() const
\note It is only possible to defer overridable certificate errors.
- \sa isOverridable(), deferred()
+ \sa isOverridable()
*/
void QWebEngineCertificateError::defer()
{