Merge with develop

--HG--
branch : compatibility-develop
This commit is contained in:
kervala 2016-05-16 16:50:11 +02:00
commit 9017d28485

View file

@ -60,7 +60,7 @@ int CProfilesModel::getIndexFromProfileID(const QString &profileId) const
QString CProfilesModel::getProfileIDFromIndex(int index) const
{
if (index < 0 || index >= m_profiles.size()) return -1;
if (index < 0 || index >= m_profiles.size()) return "";
return m_profiles[index].id;
}