Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-06-07 19:12:58 +0300
committerHannah von Reth <vonreth@kde.org>2022-06-07 19:40:15 +0300
commit2e52205314b699511c7e7e41099432b5318c599f (patch)
treeb352c2f55809afc293705d301f8667b6ba1fce1d /src/libsync
parent6f42227422a7b30e85693b2b781d978aacbfe308 (diff)
Fix -Worder
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/creds/oauth.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsync/creds/oauth.cpp b/src/libsync/creds/oauth.cpp
index 42e5850b8..a08eb9f47 100644
--- a/src/libsync/creds/oauth.cpp
+++ b/src/libsync/creds/oauth.cpp
@@ -179,13 +179,13 @@ private:
OAuth::OAuth(const QUrl &serverUrl, const QString &davUser, QNetworkAccessManager *networkAccessManager, const QVariantMap &dynamicRegistrationData, QObject *parent)
: QObject(parent)
- , _clientId(Theme::instance()->oauthClientId())
- , _clientSecret(Theme::instance()->oauthClientSecret())
- , _redirectUrl(Theme::instance()->oauthLocalhost())
, _serverUrl(serverUrl)
, _davUser(davUser)
, _dynamicRegistrationData(dynamicRegistrationData)
, _networkAccessManager(networkAccessManager)
+ , _clientId(Theme::instance()->oauthClientId())
+ , _clientSecret(Theme::instance()->oauthClientSecret())
+ , _redirectUrl(Theme::instance()->oauthLocalhost())
{
}