summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2019-03-12 15:44:12 +0100
committerNico Vertriest <nico.vertriest@qt.io>2019-03-14 08:55:50 +0000
commitfa35f8ca6606d972dfc7e8ad58845ef96efe3770 (patch)
tree6971b401569a1cf7fd28835f1ee352199a0a9984
parent77f55b1db58bb9941791a70185e88829cca9db6d (diff)
Doc: Fix link errors in qabstractoauth.cpp
Change-Id: Idbc3c7f71726b3bedb44d963cbdc13353cdff503 Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
-rw-r--r--src/oauth/qabstractoauth.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/oauth/qabstractoauth.cpp b/src/oauth/qabstractoauth.cpp
index 9aaad57..a7a6c29 100644
--- a/src/oauth/qabstractoauth.cpp
+++ b/src/oauth/qabstractoauth.cpp
@@ -92,7 +92,7 @@ QT_BEGIN_NAMESPACE
\enum QAbstractOAuth::Stage
Identifies an authentication stage. It's passed to a
- ModifyParametersFunction so that it can make different changes to
+ modifyParametersFunction so that it can make different changes to
parameters at each call to it during the process of
authentication.
@@ -513,8 +513,8 @@ void QAbstractOAuth::setReplyHandler(QAbstractOAuthReplyHandler *handler)
/*!
\since 5.13
- Authorizes the given \a request by adding headers etc. to it required for
- authenticated requests.
+ Authorizes the given \a request by adding a header and \a body to
+ it required for authenticated requests.
The \a verb must be a valid HTTP verb and the same as the one that will be
used to send the \a request.
@@ -529,7 +529,7 @@ void QAbstractOAuth::prepareRequest(QNetworkRequest *request,
/*!
Returns the current parameter-modification function.
- \sa ModifyParametersFunction, setModifyParametersFunction(), Stage
+ \sa QAbstractOAuth::ModifyParametersFunction, setModifyParametersFunction(), Stage
*/
QAbstractOAuth::ModifyParametersFunction QAbstractOAuth::modifyParametersFunction() const
{
@@ -542,7 +542,7 @@ QAbstractOAuth::ModifyParametersFunction QAbstractOAuth::modifyParametersFunctio
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
+ \sa modifyParametersFunction(), Stage
*/
void QAbstractOAuth::setModifyParametersFunction(
const QAbstractOAuth::ModifyParametersFunction &modifyParametersFunction)