Fixed: Delete ryzom_installer.ini when uninstalling Installer

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent b6a88ad754
commit f39e135494

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

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

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

Loading…
Cancel
Save