Changed: Delete old profiles shortcuts (in case where they are renamed)

This commit is contained in:
kervala 2016-10-04 19:27:29 +02:00
parent 87dffb425d
commit bdacb50564
2 changed files with 10 additions and 1 deletions

View file

@ -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();

View file

@ -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();
}