mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Improved error handing for renaming profile name
This commit is contained in:
parent
9e87179c2a
commit
b2156d64d6
@ -1163,7 +1163,7 @@ void Scan()
|
||||
// the other solution is to update userName with its new name.
|
||||
prof->user->setUserName(fname);
|
||||
QString message = QString("%1 %2 %3 %4").arg("Changing Profile Name").arg(dbname).arg("==>").arg(fname);
|
||||
qWarning() << message;
|
||||
qDebug() << message;
|
||||
}
|
||||
|
||||
profiles[fi.fileName()] = prof;
|
||||
|
@ -208,7 +208,7 @@ void NewProfile::on_nextButton_clicked()
|
||||
ui->stackedWidget->setCurrentIndex(index);
|
||||
} else {
|
||||
// Finish button clicked.
|
||||
newProfileName = ui->userNameEdit->text().trimmed();
|
||||
newProfileName = ui->userNameEdit->text().simplified();
|
||||
QString profileName;
|
||||
if (originalProfileName.isEmpty() ) {
|
||||
profileName = newProfileName;
|
||||
@ -285,14 +285,20 @@ void NewProfile::on_nextButton_clicked()
|
||||
if (file.exists()) {
|
||||
bool status = file.rename(newProfileFullName);
|
||||
if (status) { // successful rename
|
||||
Profiles::profiles[newProfileName] = p_profile;
|
||||
AppSetting->setProfileName(newProfileName);
|
||||
if (mainwin) mainwin->CloseProfile();
|
||||
QCoreApplication::processEvents();
|
||||
mainwin->RestartApplication(true,"-l");
|
||||
QCoreApplication::processEvents();
|
||||
exit(0);
|
||||
} else {
|
||||
QMessageBox::question(this, tr("Invalid User Name"), tr("Please Update User without special characters"), QMessageBox::Ok);
|
||||
QMessageBox::question(this, tr("Duplicate or Invalid User Name"), tr("Please Change User Name "), QMessageBox::Ok);
|
||||
ui->stackedWidget->setCurrentIndex(1);
|
||||
ui->userNameEdit->setText(newProfileName);
|
||||
}
|
||||
} else {
|
||||
qWarning() << "Rename Profile failed";
|
||||
}
|
||||
} else {
|
||||
if (mainwin) {
|
||||
|
Loading…
Reference in New Issue
Block a user