summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_network.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-10 13:45:13 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-10 13:45:13 -0800
commit111a153295dd50822dfe84da7b45ba06cac7bc84 (patch)
tree1154c0a2c60eab42f087ad4749c058e53bf2cb58 /desktop-widgets/preferences/preferences_network.cpp
parent77d7e773b913378486399d292cc21c4329387578 (diff)
downloadsubsurface-111a153295dd50822dfe84da7b45ba06cac7bc84.tar.gz
Preferences: correctly hook up the signals to enable/disable cloud storage
This way the menu state matches the actual verification state again. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences/preferences_network.cpp')
-rw-r--r--desktop-widgets/preferences/preferences_network.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop-widgets/preferences/preferences_network.cpp b/desktop-widgets/preferences/preferences_network.cpp
index d812f4ab1..cbdeebe8b 100644
--- a/desktop-widgets/preferences/preferences_network.cpp
+++ b/desktop-widgets/preferences/preferences_network.cpp
@@ -96,7 +96,7 @@ void PreferencesNetwork::syncSettings()
report_error(qPrintable(tr("Cloud storage email and password can only consist of letters, numbers, and '.', '-', '_', and '+'.")));
} else {
CloudStorageAuthenticate *cloudAuth = new CloudStorageAuthenticate(this);
- connect(cloudAuth, SIGNAL(finishedAuthenticate()), this, SLOT(cloudPinNeeded()));
+ connect(cloudAuth, &CloudStorageAuthenticate::finishedAuthenticate, this, &PreferencesNetwork::cloudPinNeeded);
cloudAuth->backend(email, password);
}
}
@@ -146,8 +146,7 @@ void PreferencesNetwork::cloudPinNeeded()
} else {
ui->cloudStorageGroupBox->setTitle(tr("Subsurface cloud storage"));
}
- //TODO: Do not call mainWindow here. Verify things on SettingsChanged.
- //MainWindow::instance()->enableDisableCloudActions();
+ emit settingsChanged();
}
void PreferencesNetwork::proxyType_changed(int idx)