Changed: Methods to convert index from/to profile ID

This commit is contained in:
kervala 2016-03-12 21:57:24 +01:00
parent c559bf1288
commit ebe627cce6
2 changed files with 20 additions and 0 deletions

View file

@ -46,3 +46,20 @@ bool CProfilesModel::save() const
return true;
}
int CProfilesModel::getIndexFromProfileID(int profileId) const
{
for(int i = 0; i < m_profiles.size(); ++i)
{
if (m_profiles[i].id == profileId) return i;
}
return -1;
}
int CProfilesModel::getProfileIDFromIndex(int index) const
{
if (index < 0 || index >= m_profiles.size()) return -1;
return m_profiles[index].id;
}

View file

@ -25,6 +25,9 @@ public:
bool save() const;
int getIndexFromProfileID(int profileId) const;
int getProfileIDFromIndex(int index) const;
private:
CProfiles m_profiles;
};