mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Delete menu directory when uninstalling Installer
--HG-- branch : develop
This commit is contained in:
parent
b6722dba24
commit
f27b388b11
1 changed files with 13 additions and 1 deletions
|
@ -1067,7 +1067,19 @@ void COperationDialog::deleteComponentsInstaller()
|
|||
|
||||
deleteAddRemoveEntry();
|
||||
|
||||
emit onProgressSuccess(m_components.servers.size());
|
||||
// delete menu
|
||||
QString path = config->getMenuDirectory();
|
||||
|
||||
if (!path.isEmpty())
|
||||
{
|
||||
QDir dir(path);
|
||||
|
||||
dir.removeRecursively();
|
||||
}
|
||||
|
||||
// TODO:
|
||||
|
||||
emit onProgressSuccess(1);
|
||||
emit done();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue