summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {