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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-12-15 13:52:24 +0300
committerConstantin Shalnev <c.shalnev@corp.mail.ru>2016-01-13 15:54:41 +0300
commit9f2b793d38e2770d90db73ac717c267142bd701c (patch)
tree338d60a6f726ea616e5a09d2a333753f0ab1f592 /map/gps_track_filter.hpp
parent632525a6b22fd523eb56f17df76dce242c7b6b61 (diff)
Fixed notes
Diffstat (limited to 'map/gps_track_filter.hpp')
-rw-r--r--map/gps_track_filter.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/map/gps_track_filter.hpp b/map/gps_track_filter.hpp
index 0c20ff20d9..5e9c8c253f 100644
--- a/map/gps_track_filter.hpp
+++ b/map/gps_track_filter.hpp
@@ -2,7 +2,7 @@
#include "platform/location.hpp"
-#include "geometry/point2d.hpp"
+#include "geometry/latlon.hpp"
#include "std/vector.hpp"
@@ -19,7 +19,7 @@ public:
private:
double m_minAccuracy;
- m2::PointD m_lastPt;
- bool m_hasLast;
+ ms::LatLon m_lastLl;
+ bool m_hasLastLl;
};