diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-11-19 13:28:57 +0100 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2017-11-20 10:01:15 +0100 |
commit | e762fd2d416cbe77669a83e302709aa3fbda68f7 (patch) | |
tree | da02d31582f574c472e459d5ba307dd5526746a4 /desktop-widgets/preferences | |
parent | 8ed53ab5a6ef9c6aa1394e6b854f5deda7e4e303 (diff) | |
download | subsurface-e762fd2d416cbe77669a83e302709aa3fbda68f7.tar.gz |
Fix typo: successfull -> successful and succesfully -> successfully
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/preferences')
-rw-r--r-- | desktop-widgets/preferences/preferences_network.cpp | 4 | ||||
-rw-r--r-- | desktop-widgets/preferences/preferences_network.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/desktop-widgets/preferences/preferences_network.cpp b/desktop-widgets/preferences/preferences_network.cpp index 493077430..6ccf97384 100644 --- a/desktop-widgets/preferences/preferences_network.cpp +++ b/desktop-widgets/preferences/preferences_network.cpp @@ -74,7 +74,7 @@ void PreferencesNetwork::syncSettings() } else { CloudStorageAuthenticate *cloudAuth = new CloudStorageAuthenticate(this); connect(cloudAuth, SIGNAL(finishedAuthenticate()), this, SLOT(updateCloudAuthenticationState())); - connect(cloudAuth, SIGNAL(passwordChangeSuccessful()), this, SLOT(passwordUpdateSuccessfull())); + connect(cloudAuth, SIGNAL(passwordChangeSuccessful()), this, SLOT(passwordUpdateSuccessful())); cloudAuth->backend(email, password, "", newpassword); ui->cloud_storage_new_passwd->setText(""); cloud->setNewPassword(newpassword); @@ -157,7 +157,7 @@ void PreferencesNetwork::proxyType_changed(int idx) ui->proxyAuthRequired->setChecked(ui->proxyAuthRequired->isChecked()); } -void PreferencesNetwork::passwordUpdateSuccessfull() +void PreferencesNetwork::passwordUpdateSuccessful() { ui->cloud_storage_password->setText(prefs.cloud_storage_password); } diff --git a/desktop-widgets/preferences/preferences_network.h b/desktop-widgets/preferences/preferences_network.h index 439670e71..9b9b6d467 100644 --- a/desktop-widgets/preferences/preferences_network.h +++ b/desktop-widgets/preferences/preferences_network.h @@ -23,7 +23,7 @@ public slots: private: Ui::PreferencesNetwork *ui; - void passwordUpdateSuccessfull(); + void passwordUpdateSuccessful(); }; #endif |