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:
authorExMix <rahuba.youri@mapswithme.com>2014-07-30 15:44:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:22:49 +0300
commit64b07cb6dd0d2fe5685d89a73a4f51dafbdb4e11 (patch)
treedd2cabb4af67306c44bf52ed72e840191bdf6592 /drape_frontend/line_shape.hpp
parent7a3c714e48697e44f2be66d27e90981b59b06959 (diff)
[drape] move drape into dp namespace
Diffstat (limited to 'drape_frontend/line_shape.hpp')
-rw-r--r--drape_frontend/line_shape.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drape_frontend/line_shape.hpp b/drape_frontend/line_shape.hpp
index 1a5c595c67..efc90eb6ed 100644
--- a/drape_frontend/line_shape.hpp
+++ b/drape_frontend/line_shape.hpp
@@ -16,10 +16,10 @@ public:
LineShape(vector<m2::PointF> const & points,
LineViewParams const & params);
- virtual void Draw(RefPointer<Batcher> batcher, RefPointer<TextureSetHolder> /*textures*/) const;
+ virtual void Draw(dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::TextureSetHolder> /*textures*/) const;
float GetWidth() const { return m_params.m_width; }
- Color const & GetColor() const { return m_params.m_color; }
+ dp::Color const & GetColor() const { return m_params.m_color; }
private:
LineViewParams m_params;