Fixed: Delete ryzom_installer.ini when uninstalling Installer

--HG--
branch : develop
This commit is contained in:
kervala 2016-09-29 20:47:03 +02:00
parent b6a88ad754
commit f39e135494
3 changed files with 9 additions and 0 deletions

View file

@ -188,6 +188,11 @@ bool CConfigFile::save() const
return true;
}
bool CConfigFile::remove()
{
return QFile::remove(m_configPath);
}
CConfigFile* CConfigFile::getInstance()
{
return s_instance;

View file

@ -38,6 +38,7 @@ public:
bool load();
bool load(const QString &filename);
bool save() const;
bool remove();
static CConfigFile* getInstance();

View file

@ -1179,6 +1179,9 @@ void COperationDialog::deleteComponentsInstaller()
}
}
// delete configuration file
config->remove();
// reset it once it's done
m_removeComponents.installer = false;