mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Trim blanks from user name before checking username is not empty
This commit is contained in:
parent
cc7877afd7
commit
22a8303836
@ -151,7 +151,7 @@ void NewProfile::on_nextButton_clicked()
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
if (ui->userNameEdit->text().isEmpty()) {
|
if (ui->userNameEdit->text().trimmed().isEmpty()) {
|
||||||
QMessageBox::information(this, STR_MessageBox_Error, tr("Please provide a username for this profile"), QMessageBox::Ok);
|
QMessageBox::information(this, STR_MessageBox_Error, tr("Please provide a username for this profile"), QMessageBox::Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -190,7 +190,7 @@ void NewProfile::on_nextButton_clicked()
|
|||||||
ui->stackedWidget->setCurrentIndex(index);
|
ui->stackedWidget->setCurrentIndex(index);
|
||||||
} else {
|
} else {
|
||||||
// Finish button clicked.
|
// Finish button clicked.
|
||||||
QString username = ui->userNameEdit->text();
|
QString username = ui->userNameEdit->text().trimmed();
|
||||||
|
|
||||||
if (QMessageBox::question(this, tr("Profile Changes"), tr("Accept and save this information?"),
|
if (QMessageBox::question(this, tr("Profile Changes"), tr("Accept and save this information?"),
|
||||||
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
|
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
|
||||||
|
Loading…
Reference in New Issue
Block a user