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>
This commit is contained in:
Timur Pocheptsov 2019-03-12 09:50:11 +01:00
parent a9cd8ce296
commit 5e74505c33

View File

@ -124,14 +124,14 @@ QOcspResponse::QOcspResponse()
/*! /*!
\since 5.13 \since 5.13
Creates a new response, the copy of \a other. Copy-constructs a QOcspResponse instance.
*/ */
QOcspResponse::QOcspResponse(const QOcspResponse &) = default; QOcspResponse::QOcspResponse(const QOcspResponse &) = default;
/*! /*!
\since 5.13 \since 5.13
Move-constructs a QOcspResponse instance from \a other. Move-constructs a QOcspResponse instance.
*/ */
QOcspResponse::QOcspResponse(QOcspResponse &&) Q_DECL_NOTHROW = default; QOcspResponse::QOcspResponse(QOcspResponse &&) Q_DECL_NOTHROW = default;
@ -145,14 +145,14 @@ QOcspResponse::~QOcspResponse() = default;
/*! /*!
\since 5.13 \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; QOcspResponse &QOcspResponse::operator=(const QOcspResponse &) = default;
/*! /*!
\since 5.13 \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; QOcspResponse &QOcspResponse::operator=(QOcspResponse &&) Q_DECL_NOTHROW = default;