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
path: root/src
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-09-16 12:12:36 +0300
committerHannah von Reth <vonreth@kde.org>2020-09-16 14:54:19 +0300
commit0ccd7cb982b480684770e0ffd0b41b308c8f49a3 (patch)
tree1225a57595071d4352b4bd55bedbb8785cd1b6ad /src
parentfcbe2f1fc343fe56be7a7ffd3390ea1b6ed20b5c (diff)
Ensure receiver exists
Diffstat (limited to 'src')
-rw-r--r--src/gui/wizard/owncloudadvancedsetuppage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/wizard/owncloudadvancedsetuppage.cpp b/src/gui/wizard/owncloudadvancedsetuppage.cpp
index a344df863..8aea63778 100644
--- a/src/gui/wizard/owncloudadvancedsetuppage.cpp
+++ b/src/gui/wizard/owncloudadvancedsetuppage.cpp
@@ -99,7 +99,7 @@ OwncloudAdvancedSetupPage::OwncloudAdvancedSetupPage()
// For OAuth, disable the back button in the Page_AdvancedSetup because we don't want
// to re-open the browser.
// HACK: the wizard will reenable the buttons on completeChanged, so delay it
- QTimer::singleShot(0, [this]{
+ QTimer::singleShot(0, this, [this]{
wizard()->button(QWizard::BackButton)->setEnabled(false);
});
}