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:
authorrachytski <siarhei.rachytski@gmail.com>2013-01-31 17:25:38 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:49:35 +0300
commitd1fbb8ab5ba210cb6ae3bf90680007c01d3c4c16 (patch)
tree174ebddb28fd54f1b22c7c844af7b4767245d14d /map/compass_arrow.cpp
parentda55e60f02d06702b5ea96f6a018ee4d8603c0c9 (diff)
fixed default constructors for all OverlayElements.
Diffstat (limited to 'map/compass_arrow.cpp')
-rw-r--r--map/compass_arrow.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/map/compass_arrow.cpp b/map/compass_arrow.cpp
index 7b71d39435..3965a090a4 100644
--- a/map/compass_arrow.cpp
+++ b/map/compass_arrow.cpp
@@ -13,6 +13,12 @@
#include "../graphics/screen.hpp"
#include "../graphics/pen.hpp"
+CompassArrow::Params::Params()
+ : m_arrowWidth(0),
+ m_arrowHeight(0),
+ m_framework(0)
+{}
+
CompassArrow::CompassArrow(Params const & p)
: base_t(p),
m_arrowWidth(p.m_arrowWidth),