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-09-10 18:38:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:26:32 +0300
commit9e1acfd5935a5bf84f6a42e87e4d7257f34252a7 (patch)
treee69b6c851b0a80fb249a706d8f82f3a9222801cb /map/location_state.hpp
parent4b352cba5f7effd8ed9fe7620c7c4ab87a83b7c8 (diff)
review fixes
Diffstat (limited to 'map/location_state.hpp')
-rw-r--r--map/location_state.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/map/location_state.hpp b/map/location_state.hpp
index 9b912f22e6..3724cbc8eb 100644
--- a/map/location_state.hpp
+++ b/map/location_state.hpp
@@ -35,14 +35,14 @@ namespace location
};
public:
- // Do not change the order
+ // Do not change the order and values
enum Mode
{
- UnknowPosition = 0x0,
+ UnknownPosition = 0x0,
PendingPosition = 0x1,
NotFollow = 0x2,
- Follow = 0x4,
- RotateAndFollow = 0x8,
+ Follow = 0x3,
+ RotateAndFollow = 0x4,
};
typedef function<void(Mode)> TStateModeListener;