forked from organicmaps/organicmaps
[core] Added name setter to Bookmark
This commit is contained in:
parent
b9900f8279
commit
f01434415f
1 changed files with 3 additions and 3 deletions
|
@ -90,9 +90,9 @@ public:
|
|||
|
||||
virtual Type GetMarkType() const { return BOOKMARK; }
|
||||
|
||||
m2::PointD const & GetOrg() const { return UserMark::GetOrg(); }
|
||||
string const & GetName() const { return m_data.GetName(); }
|
||||
//void SetName(string const & name) { m_name = name; }
|
||||
m2::PointD const & GetOrg() const { return m_org; }
|
||||
string const & GetName() const { return m_name; }
|
||||
void SetName(string const & name) { m_name = name; }
|
||||
/// @return Now its a bookmark color - name of icon file
|
||||
string const & GetType() const { return m_data.GetType(); }
|
||||
//void SetType(string const & type) { m_type = type; }
|
||||
|
|
Loading…
Add table
Reference in a new issue