summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-03-16 03:06:02 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-03-16 03:06:02 +0100
commit40df50986eae2ebbe3a05321703829964e3bb7d2 (patch)
treedffb1b6a68aa443c9cf883a93c107b7b75bf097d
parent3e927d64266aa51d1f4f853f3c905ffd4576b6bc (diff)
parentfa35f8ca6606d972dfc7e8ad58845ef96efe3770 (diff)
Merge remote-tracking branch 'origin/5.13' into dev
-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)