summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2019-03-12 09:50:11 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2019-03-12 08:56:30 +0000
commit5e74505c33f0d8c8e7f0ec91cdf7e4fd6d3d5f20 (patch)
treef1657541902a40c6d3fa84c89e7f8d0dec7f707d /src/network
parenta9cd8ce2961190e51c59cdd34c26c5b6f4c70aa1 (diff)
QOcspResponse - fix broken documentation
After the 'other' parameter in the "defaulted" definitions was removed to get rid of 'unused variable' error, docs were not updated properly, still referring to non-existing 'other' parameter. Change-Id: I3acbebfa5f1cf915d46a5bbf1b4a1ea18374b565 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/network')
-rw-r--r--src/network/ssl/qocspresponse.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/ssl/qocspresponse.cpp b/src/network/ssl/qocspresponse.cpp
index 1f2de44859..d564e817ca 100644
--- a/src/network/ssl/qocspresponse.cpp
+++ b/src/network/ssl/qocspresponse.cpp
@@ -124,14 +124,14 @@ QOcspResponse::QOcspResponse()
/*!
\since 5.13
- Creates a new response, the copy of \a other.
+ Copy-constructs a QOcspResponse instance.
*/
QOcspResponse::QOcspResponse(const QOcspResponse &) = default;
/*!
\since 5.13
- Move-constructs a QOcspResponse instance from \a other.
+ Move-constructs a QOcspResponse instance.
*/
QOcspResponse::QOcspResponse(QOcspResponse &&) Q_DECL_NOTHROW = default;
@@ -145,14 +145,14 @@ QOcspResponse::~QOcspResponse() = default;
/*!
\since 5.13
- Assigns \a other to the response and returns a reference to this response.
+ Copy-assigns and returns a reference to this response.
*/
QOcspResponse &QOcspResponse::operator=(const QOcspResponse &) = default;
/*!
\since 5.13
- Move-assigns \a other to this QOcspResponse instance.
+ Move-assigns to this QOcspResponse instance.
*/
QOcspResponse &QOcspResponse::operator=(QOcspResponse &&) Q_DECL_NOTHROW = default;