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:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-04-04 13:49:22 +0300
committerSergey Magidovich <mgsergio@mapswithme.com>2016-04-04 14:03:59 +0300
commit10ce427a401c543a99571f627adb58a6f905b616 (patch)
tree8160f2a1bc819afd8f131876ae299993b9b39703 /indexer/osm_editor.hpp
parent82bdd8054345a7ac44b8b5868047d2bf40343d36 (diff)
Fix Editor::CreateNotes api.
Diffstat (limited to 'indexer/osm_editor.hpp')
-rw-r--r--indexer/osm_editor.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/osm_editor.hpp b/indexer/osm_editor.hpp
index 1cd83ae71d..f73df79d63 100644
--- a/indexer/osm_editor.hpp
+++ b/indexer/osm_editor.hpp
@@ -116,7 +116,7 @@ public:
bool CreatePoint(uint32_t type, m2::PointD const & mercator, MwmSet::MwmId const & id, EditableMapObject & outFeature);
- void CreateNote(m2::PointD const & point, string const & note);
+ void CreateNote(ms::LatLon const & latLon, string const & note);
void UploadNotes(string const & key, string const & secret);
struct Stats
@@ -127,7 +127,7 @@ public:
time_t m_lastUploadTimestamp = my::INVALID_TIME_STAMP;
};
Stats GetStats() const;
-
+
static bool IsCreatedFeature(FeatureID const & fid);
private: