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:
authorAlex Zolotarev <alex@mapswithme.com>2014-08-06 00:31:02 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:23:42 +0300
commita43d4251fd32b88569884ca41d4ba22e3de8b045 (patch)
treef93e85a40fa718a54b5fe58e5bfef7110b237048 /drape_frontend/poi_symbol_shape.hpp
parent63c2234ba46f95020f158a440dc675c8b6e16c0a (diff)
Base libraries C++11 sources compatibility
Diffstat (limited to 'drape_frontend/poi_symbol_shape.hpp')
-rw-r--r--drape_frontend/poi_symbol_shape.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drape_frontend/poi_symbol_shape.hpp b/drape_frontend/poi_symbol_shape.hpp
index 91bcef5f90..61a30dc98b 100644
--- a/drape_frontend/poi_symbol_shape.hpp
+++ b/drape_frontend/poi_symbol_shape.hpp
@@ -9,12 +9,12 @@ namespace df
class PoiSymbolShape : public MapShape
{
public:
- PoiSymbolShape(m2::PointD const & mercatorPt, PoiSymbolViewParams const & params);
+ PoiSymbolShape(m2::PointF const & mercatorPt, PoiSymbolViewParams const & params);
virtual void Draw(dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::TextureSetHolder> textures) const;
private:
- m2::PointD const m_pt;
+ m2::PointF const m_pt;
PoiSymbolViewParams const m_params;
};