Fix a typo in the variable name

This commit is contained in:
Alexander Babikov
2025-08-17 07:15:23 +05:00
parent 271f45277e
commit 8fe89e25bc

View File

@@ -586,17 +586,17 @@ VMManagerMain::newMachineWizard()
void void
VMManagerMain::addNewSystem(const QString &name, const QString &dir, const QString &displayName, const QString &configFile) VMManagerMain::addNewSystem(const QString &name, const QString &dir, const QString &displayName, const QString &configFile)
{ {
const auto newSytemDirectory = QDir(QDir::cleanPath(dir + "/" + name)); const auto newSystemDirectory = QDir(QDir::cleanPath(dir + "/" + name));
// qt replaces `/` with native separators // qt replaces `/` with native separators
const auto newSystemConfigFile = QFileInfo(newSytemDirectory.path() + "/" + "86box.cfg"); const auto newSystemConfigFile = QFileInfo(newSystemDirectory.path() + "/" + "86box.cfg");
if (newSystemConfigFile.exists() || newSytemDirectory.exists()) { if (newSystemConfigFile.exists() || newSystemDirectory.exists()) {
QMessageBox::critical(this, tr("Directory in use"), tr("The selected directory is already in use. Please select a different directory.")); QMessageBox::critical(this, tr("Directory in use"), tr("The selected directory is already in use. Please select a different directory."));
return; return;
} }
// Create the directory // Create the directory
const QDir qmkdir; const QDir qmkdir;
if (const bool mkdirResult = qmkdir.mkdir(newSytemDirectory.path()); !mkdirResult) { if (const bool mkdirResult = qmkdir.mkdir(newSystemDirectory.path()); !mkdirResult) {
QMessageBox::critical(this, tr("Create directory failed"), tr("Unable to create the directory for the new system")); QMessageBox::critical(this, tr("Create directory failed"), tr("Unable to create the directory for the new system"));
return; return;
} }
@@ -635,7 +635,7 @@ VMManagerMain::addNewSystem(const QString &name, const QString &dir, const QStri
// No config file which means the cancel button was pressed in the settings dialog // No config file which means the cancel button was pressed in the settings dialog
// Attempt to clean up the directory that was created // Attempt to clean up the directory that was created
const QDir qrmdir; const QDir qrmdir;
if (const bool result = qrmdir.rmdir(newSytemDirectory.path()); !result) { if (const bool result = qrmdir.rmdir(newSystemDirectory.path()); !result) {
qWarning() << "Error cleaning up the old directory for canceled operation. Continuing anyway."; qWarning() << "Error cleaning up the old directory for canceled operation. Continuing anyway.";
} }
fail = true; fail = true;