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>2013-07-10 21:46:44 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:58:38 +0300
commitf671ba9e586e1c96cc8efb8ae0a292247811e9ba (patch)
tree3fc46dcbaa4c03e188064a1b3964762d9325fdea /map/navigator.hpp
parent4f7f6fb6bd586d7fa1d8fa9b798fc7ece4ffd4c4 (diff)
Fix uninitialized variable in Navigator tests.
Diffstat (limited to 'map/navigator.hpp')
-rw-r--r--map/navigator.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/navigator.hpp b/map/navigator.hpp
index 634b2f495e..97d42020d5 100644
--- a/map/navigator.hpp
+++ b/map/navigator.hpp
@@ -66,10 +66,10 @@ public:
m2::PointD ShiftPoint(m2::PointD const & pt) const;
private:
-
m2::RectD m_worldRect;
unsigned m_pxMinWidth;
double m_metresMinWidth;
+
bool CheckMinScale(ScreenBase const & screen) const;
bool CheckMaxScale(ScreenBase const & screen) const;
bool CheckBorders(ScreenBase const & screen) const;