aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/qtserialbluetooth.cpp2
-rw-r--r--desktop-widgets/preferences/preferences_network.cpp4
-rw-r--r--desktop-widgets/preferences/preferences_network.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/core/qtserialbluetooth.cpp b/core/qtserialbluetooth.cpp
index a6baae9f7..54a21d037 100644
--- a/core/qtserialbluetooth.cpp
+++ b/core/qtserialbluetooth.cpp
@@ -290,7 +290,7 @@ static dc_status_t qt_serial_open(dc_custom_io_t *io, dc_context_t *context, con
return DC_STATUS_NODEVICE;
}
- qDebug() << "Succesfully connected to device";
+ qDebug() << "Successfully connected to device";
#else
// Create a RFCOMM socket
serial_port->socket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol);
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