Changed: Delete menu directory when uninstalling Installer
This commit is contained in:
parent
b7e65be64f
commit
930d7fe433
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