mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-14 03:09:08 +00:00
Fixed: Don't check if directory is empty when reinstalling in same directory
This commit is contained in:
parent
1b8e007ce3
commit
bd8e3d3b0a
2 changed files with 17 additions and 9 deletions
|
@ -186,11 +186,15 @@ void CInstallDialog::accept()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if reinstalling in same directory, don't check if directory is empty
|
||||||
|
if (m_dstDirectory != CConfigFile::getInstance()->getNewInstallationDirectory())
|
||||||
|
{
|
||||||
if (!isDirectoryEmpty(m_dstDirectory, true))
|
if (!isDirectoryEmpty(m_dstDirectory, true))
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton res = QMessageBox::warning(this, tr("Directory not empty"), tr("This directory is not empty, please choose another one."));
|
QMessageBox::StandardButton res = QMessageBox::warning(this, tr("Directory not empty"), tr("This directory is not empty, please choose another one."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (oldDirectoryRadioButton->isChecked())
|
if (oldDirectoryRadioButton->isChecked())
|
||||||
{
|
{
|
||||||
|
|
|
@ -154,11 +154,15 @@ void CMigrateDialog::accept()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if reinstalling in same directory, don't check if directory is empty
|
||||||
|
if (m_dstDirectory != CConfigFile::getInstance()->getNewInstallationDirectory())
|
||||||
|
{
|
||||||
if (!isDirectoryEmpty(m_dstDirectory, true))
|
if (!isDirectoryEmpty(m_dstDirectory, true))
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton res = QMessageBox::warning(this, tr("Directory not empty"), tr("This directory is not empty, please choose another one."));
|
QMessageBox::StandardButton res = QMessageBox::warning(this, tr("Directory not empty"), tr("This directory is not empty, please choose another one."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CConfigFile::getInstance()->setSrcServerDirectory(m_currentDirectory);
|
CConfigFile::getInstance()->setSrcServerDirectory(m_currentDirectory);
|
||||||
CConfigFile::getInstance()->setInstallationDirectory(m_dstDirectory);
|
CConfigFile::getInstance()->setInstallationDirectory(m_dstDirectory);
|
||||||
|
|
Loading…
Reference in a new issue