forked from organicmaps/organicmaps
Added const to getter.
This commit is contained in:
parent
a760d64d69
commit
22fa820501
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ bool UserStats::GetRank(int32_t & rank) const
|
|||
return true;
|
||||
}
|
||||
|
||||
bool UserStats::GetLevelUpRequiredFeat(string & levelUpFeat)
|
||||
bool UserStats::GetLevelUpRequiredFeat(string & levelUpFeat) const
|
||||
{
|
||||
if (m_levelUpRequiredFeat.empty())
|
||||
return false;
|
||||
|
|
|
@ -21,7 +21,7 @@ public:
|
|||
|
||||
bool GetChangesCount(int32_t & changesCount) const;
|
||||
bool GetRank(int32_t & rank) const;
|
||||
bool GetLevelUpRequiredFeat(string & levelUpFeat);
|
||||
bool GetLevelUpRequiredFeat(string & levelUpFeat) const;
|
||||
|
||||
time_t GetLastUpdate() const { return m_updateTime; }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue