From 5e74505c33f0d8c8e7f0ec91cdf7e4fd6d3d5f20 Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Tue, 12 Mar 2019 09:50:11 +0100 Subject: QOcspResponse - fix broken documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/network/ssl/qocspresponse.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/network/ssl') 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; -- cgit v1.2.3