mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix typo: successfull -> successful and succesfully -> successfully
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
8ed53ab5a6
commit
e762fd2d41
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
return DC_STATUS_NODEVICE;
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug() << "Succesfully connected to device";
|
qDebug() << "Successfully connected to device";
|
||||||
#else
|
#else
|
||||||
// Create a RFCOMM socket
|
// Create a RFCOMM socket
|
||||||
serial_port->socket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol);
|
serial_port->socket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol);
|
||||||
|
|
|
@ -74,7 +74,7 @@ void PreferencesNetwork::syncSettings()
|
||||||
} else {
|
} else {
|
||||||
CloudStorageAuthenticate *cloudAuth = new CloudStorageAuthenticate(this);
|
CloudStorageAuthenticate *cloudAuth = new CloudStorageAuthenticate(this);
|
||||||
connect(cloudAuth, SIGNAL(finishedAuthenticate()), this, SLOT(updateCloudAuthenticationState()));
|
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);
|
cloudAuth->backend(email, password, "", newpassword);
|
||||||
ui->cloud_storage_new_passwd->setText("");
|
ui->cloud_storage_new_passwd->setText("");
|
||||||
cloud->setNewPassword(newpassword);
|
cloud->setNewPassword(newpassword);
|
||||||
|
@ -157,7 +157,7 @@ void PreferencesNetwork::proxyType_changed(int idx)
|
||||||
ui->proxyAuthRequired->setChecked(ui->proxyAuthRequired->isChecked());
|
ui->proxyAuthRequired->setChecked(ui->proxyAuthRequired->isChecked());
|
||||||
}
|
}
|
||||||
|
|
||||||
void PreferencesNetwork::passwordUpdateSuccessfull()
|
void PreferencesNetwork::passwordUpdateSuccessful()
|
||||||
{
|
{
|
||||||
ui->cloud_storage_password->setText(prefs.cloud_storage_password);
|
ui->cloud_storage_password->setText(prefs.cloud_storage_password);
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ public slots:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::PreferencesNetwork *ui;
|
Ui::PreferencesNetwork *ui;
|
||||||
void passwordUpdateSuccessfull();
|
void passwordUpdateSuccessful();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue