mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Delete old profiles shortcuts (in case where they are renamed)
--HG-- branch : develop
This commit is contained in:
parent
d1575b9f58
commit
c348bbb3de
2 changed files with 10 additions and 1 deletions
|
@ -237,6 +237,9 @@ void COperationDialog::updateAddRemoveComponents()
|
|||
|
||||
// remove profiles that didn't exist
|
||||
profilesToAdd.removeAll(profile.id);
|
||||
|
||||
// delete all shortcuts, we'll recreate them later
|
||||
profile.deleteShortcuts();
|
||||
}
|
||||
|
||||
const CServer &defaultServer = config->getServer();
|
||||
|
@ -360,7 +363,7 @@ void COperationDialog::processUpdateProfilesNextStep()
|
|||
}
|
||||
}
|
||||
|
||||
// recreate shortcuts
|
||||
// recreate all shortcuts
|
||||
foreach(const CProfile &profile, config->getProfiles())
|
||||
{
|
||||
profile.createShortcuts();
|
||||
|
|
|
@ -169,6 +169,12 @@ bool createShortcut(const QString &shortcut, const QString &name, const QString
|
|||
|
||||
// Save the link by calling IPersistFile::Save.
|
||||
hres = ppf->Save(qToWide(QDir::toNativeSeparators(path)), TRUE);
|
||||
|
||||
if (FAILED(hres))
|
||||
{
|
||||
qDebug() << "Unable to create shortcut" << path;
|
||||
}
|
||||
|
||||
ppf->Release();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue