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>2011-08-22 14:57:08 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:22:12 +0300
commitad04e96591c69f66279dd7b0c932f2621511d234 (patch)
treedc0451a898de933c8939faec28f18fbf77cf9aa9 /map/feature_vec_model.hpp
parenta94c1a5f9e008fc08f3f915aa008653b29710cfd (diff)
Add separate ForEachInRectXXX functon for tile drawing.
Diffstat (limited to 'map/feature_vec_model.hpp')
-rw-r--r--map/feature_vec_model.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/feature_vec_model.hpp b/map/feature_vec_model.hpp
index 48fe432e56..d9c439a87e 100644
--- a/map/feature_vec_model.hpp
+++ b/map/feature_vec_model.hpp
@@ -52,9 +52,9 @@ namespace model
}
template <class ToDo>
- void ForEachFeatureWithScale(m2::RectD const & rect, ToDo toDo, int scale) const
+ void ForEachFeature_TileDrawing(m2::RectD const & rect, ToDo const & toDo, int scale) const
{
- m_multiIndex.ForEachInRect(toDo, rect, scale);
+ m_multiIndex.ForEachInRect_TileDrawing(toDo, rect, scale);
}
index_t const & GetIndex() const { return m_multiIndex; }