Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-10-11 18:48:38 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:45:09 +0300
commit5b1e6e5d33d08c929f3783ee93b63da0dede5900 (patch)
tree76c37273fabc3ba08c80be43579adae92686f38d /map/bookmark.hpp
parent4907a1f4d87207caebc513ea9811e9526ea4ee85 (diff)
Fix according to code review.
Diffstat (limited to 'map/bookmark.hpp')
-rw-r--r--map/bookmark.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/map/bookmark.hpp b/map/bookmark.hpp
index ed52a83cdb..fef26b9c26 100644
--- a/map/bookmark.hpp
+++ b/map/bookmark.hpp
@@ -20,7 +20,7 @@ class Bookmark
public:
Bookmark() {}
Bookmark(m2::PointD const & org, string const & name, string const & type)
- : m_org(org), m_name(name), m_type(type)
+ : m_org(org), m_name(name), m_type(type), m_scale(-1.0)
{
}
@@ -48,7 +48,7 @@ public:
void ClearBookmarks();
- /// @name This function are called from Framework only.
+ /// @name Theese functions are called from Framework only.
//@{
void AddBookmark(Bookmark const & bm, double scale);
void ReplaceBookmark(size_t index, Bookmark const & bm, double scale);
@@ -70,7 +70,7 @@ public:
void DeleteBookmark(size_t index);
- /// @name This fuctions are public for unit tests only.
+ /// @name Theese fuctions are public for unit tests only.
/// You don't need to call them from client code.
//@{
void LoadFromKML(ReaderPtr<Reader> const & reader);