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/newwizard
parentfd86a5f70af59bf1c99aedd480454e4f39e872f7 (diff)
Fix regression introduced in 3afb7a5ebdb64dcd3da1c0b5b110dc6a6c50aa6d
Diffstat (limited to 'src/gui/newwizard')
-rw-r--r--src/gui/newwizard/setupwizardcontroller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/newwizard/setupwizardcontroller.cpp b/src/gui/newwizard/setupwizardcontroller.cpp
index 03868a509..f4ba5bc10 100644
--- a/src/gui/newwizard/setupwizardcontroller.cpp
+++ b/src/gui/newwizard/setupwizardcontroller.cpp
@@ -237,7 +237,7 @@ void SetupWizardController::nextStep(std::optional<PageIndex> currentPage, std::
// username might not be set yet, shouldn't matter, though
auto oAuth = new OAuth(_accountBuilder.serverUrl(), QString(), _accessManager, {}, this);
- connect(oAuth, &OAuth::result, this, [this, newPage](OAuth::Result result, const QString &userName, const QString &token, const QString &displayName, const QString &refreshToken) {
+ connect(oAuth, &OAuth::result, this, [this, newPage](OAuth::Result result, const QString &userName, const QString &token, const QString &refreshToken, const QString &displayName) {
// the button may not be clicked any more, since the server has been shut down right before this signal was emitted by the OAuth instance
newPage->disableButtons();