summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2018-03-27 09:47:04 +0200
committerTopi Reiniƶ <topi.reinio@qt.io>2018-03-27 10:11:31 +0000
commit88e0b0fc7e828533fa387f7a367e94b81674e3b1 (patch)
treec13b75438f583f815c8056492606e02baa71d254
parent886942094513d4b32c7ff7358ee5dd23e8e0d83a (diff)
Doc: Fix documentation warningsv5.11.0-beta3
warning: Undocumented parameter 'modifyParametersFunction' in QAbstractOAuth::setModifyParametersFunction() warning: Undocumented parameter 'other' in QOAuth1Signature::operator=() Change-Id: I37d08a547b64d325d9a3b5106f639b3be36ded48 Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--src/oauth/qabstractoauth.cpp8
-rw-r--r--src/oauth/qoauth1signature.cpp3
2 files changed, 4 insertions, 7 deletions
diff --git a/src/oauth/qabstractoauth.cpp b/src/oauth/qabstractoauth.cpp
index 58579ec..5326292 100644
--- a/src/oauth/qabstractoauth.cpp
+++ b/src/oauth/qabstractoauth.cpp
@@ -520,10 +520,10 @@ QAbstractOAuth::ModifyParametersFunction QAbstractOAuth::modifyParametersFunctio
}
/*!
- Sets the parameter-modification function. This function is used
- to customize the parameters sent to the server during a specified
- authorization stage. The number of calls to this function
- depends on the flow used during the authentication.
+ Sets the parameter-modification function \a modifyParametersFunction.
+ This function is used to customize the parameters sent to the server
+ during a specified authorization stage. The number of calls to this
+ function depends on the flow used during the authentication.
\sa modifyParametersFunction(), ModifyParametersFunction, Stage
*/
void QAbstractOAuth::setModifyParametersFunction(
diff --git a/src/oauth/qoauth1signature.cpp b/src/oauth/qoauth1signature.cpp
index 6ad38b2..54d97c6 100644
--- a/src/oauth/qoauth1signature.cpp
+++ b/src/oauth/qoauth1signature.cpp
@@ -408,9 +408,6 @@ void QOAuth1Signature::swap(QOAuth1Signature &other)
qSwap(d, other.d);
}
-/*!
- Copy-assignment operator.
-*/
QOAuth1Signature &QOAuth1Signature::operator=(const QOAuth1Signature &other)
{
if (d != other.d) {