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-28 15:49:26 +0300
committerHannah von Reth <vonreth@kde.org>2022-06-29 14:58:08 +0300
commitbc9e1ea5807bc6c245de87968a956b94eced8f19 (patch)
tree6996cca3365ca7f400ae7d304258d1ec953c864a /src/gui/creds
parentfd86a5f70af59bf1c99aedd480454e4f39e872f7 (diff)
Fix regression introduced in 3afb7a5ebdb64dcd3da1c0b5b110dc6a6c50aa6d
Diffstat (limited to 'src/gui/creds')
-rw-r--r--src/gui/creds/httpcredentialsgui.cpp2
-rw-r--r--src/gui/creds/httpcredentialsgui.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/creds/httpcredentialsgui.cpp b/src/gui/creds/httpcredentialsgui.cpp
index af90c67e9..136339a27 100644
--- a/src/gui/creds/httpcredentialsgui.cpp
+++ b/src/gui/creds/httpcredentialsgui.cpp
@@ -88,7 +88,7 @@ void HttpCredentialsGui::askFromUserAsync()
}
void HttpCredentialsGui::asyncAuthResult(OAuth::Result r, const QString &user,
- const QString &token, const QString &refreshToken)
+ const QString &token, const QString &refreshToken, const QString &)
{
_asyncAuth.reset();
switch (r) {
diff --git a/src/gui/creds/httpcredentialsgui.h b/src/gui/creds/httpcredentialsgui.h
index 4c84de8d2..2332735f3 100644
--- a/src/gui/creds/httpcredentialsgui.h
+++ b/src/gui/creds/httpcredentialsgui.h
@@ -53,7 +53,7 @@ public:
static QString requestAppPasswordText(const Account *account);
private slots:
- void asyncAuthResult(OAuth::Result, const QString &user, const QString &accessToken, const QString &refreshToken);
+ void asyncAuthResult(OAuth::Result, const QString &user, const QString &accessToken, const QString &refreshToken, const QString &displayName);
void showDialog();
void askFromUserAsync();