mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Merge with develop
This commit is contained in:
parent
98066af393
commit
643c0fabf2
2 changed files with 17 additions and 9 deletions
|
@ -186,11 +186,15 @@ void CInstallDialog::accept()
|
|||
return;
|
||||
}
|
||||
|
||||
// if reinstalling in same directory, don't check if directory is empty
|
||||
if (m_dstDirectory != CConfigFile::getInstance()->getNewInstallationDirectory())
|
||||
{
|
||||
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."));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (oldDirectoryRadioButton->isChecked())
|
||||
{
|
||||
|
|
|
@ -154,11 +154,15 @@ void CMigrateDialog::accept()
|
|||
return;
|
||||
}
|
||||
|
||||
// if reinstalling in same directory, don't check if directory is empty
|
||||
if (m_dstDirectory != CConfigFile::getInstance()->getNewInstallationDirectory())
|
||||
{
|
||||
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."));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
CConfigFile::getInstance()->setSrcServerDirectory(m_currentDirectory);
|
||||
CConfigFile::getInstance()->setInstallationDirectory(m_dstDirectory);
|
||||
|
|
Loading…
Reference in a new issue