summaryrefslogtreecommitdiffstats
path: root/src/network/ssl
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-08-19 14:54:51 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-08-20 07:51:05 +0200
commit92d4d490fe808479e3fe8885e5e5cabd20f3d03f (patch)
treebed5c974344f0baac00265c48f4d674ad185e557 /src/network/ssl
parent1f1f0003274e446fc49e61255749f83c5826cd0b (diff)
Fix a number of qdoc warnings
- Remove obsolete functions and enumeration values - Remove QObject * parameter from QMetaProperty accessors - Fix renamed enumerations in QSsl - Fix list items to be \li - Fix function signatures and variable names Change-Id: I37c7e6bf2c8ff92bc7b82620bae0a27796f866ab Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/network/ssl')
-rw-r--r--src/network/ssl/qsslsocket.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/ssl/qsslsocket.cpp b/src/network/ssl/qsslsocket.cpp
index 9d8fa035e2..ab4ce1527e 100644
--- a/src/network/ssl/qsslsocket.cpp
+++ b/src/network/ssl/qsslsocket.cpp
@@ -323,7 +323,7 @@
*/
/*!
- \fn void QSslSocket::alertSent(QAlertLevel level, QAlertType type, const QString &description)
+ \fn void QSslSocket::alertSent(QSsl::AlertLevel level, QSsl::AlertType type, const QString &description)
QSslSocket emits this signal if an alert message was sent to a peer. \a level
describes if it was a warning or a fatal error. \a type gives the code
@@ -334,11 +334,11 @@
purposes, normally it does not require any actions from the application.
\note Not all backends support this functionality.
- \sa alertReceived(), QAlertLevel, QAlertType
+ \sa alertReceived(), QSsl::AlertLevel, QSsl::AlertType
*/
/*!
- \fn void QSslSocket::alertReceived(QAlertLevel level, QAlertType type, const QString &description)
+ \fn void QSslSocket::alertReceived(QSsl::AlertLevel level, QSsl::AlertType type, const QString &description)
QSslSocket emits this signal if an alert message was received from a peer.
\a level tells if the alert was fatal or it was a warning. \a type is the
@@ -350,7 +350,7 @@
backend will handle it and close the connection.
\note Not all backends support this functionality.
- \sa alertSent(), QAlertLevel, QAlertType
+ \sa alertSent(), QSsl::AlertLevel, QSsl::AlertType
*/
/*!