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:
authorYuri Gorshenin <y@maps.me>2015-02-03 17:38:37 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:37:04 +0300
commita8ce8181d744420f1230c2d6f372dfd1ffda7434 (patch)
tree18e91c1ad897176164c886d1c1b0274d44c72363 /map/user_mark_container.hpp
parent94feed33e0802f1a0dd1804c4eb32fb4e520ed0f (diff)
Revert "Merge pull request #224 from gorshenin/fixed-bookmarks-order"
This reverts commit 52cf31897f2b3d3f48e46ecb7ef155180f605004, reversing changes made to 7be1c7d93f09cd70963815b5289d28e8a8102437.
Diffstat (limited to 'map/user_mark_container.hpp')
-rw-r--r--map/user_mark_container.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/map/user_mark_container.hpp b/map/user_mark_container.hpp
index 6dc55e974e..becfc3cd38 100644
--- a/map/user_mark_container.hpp
+++ b/map/user_mark_container.hpp
@@ -7,7 +7,6 @@
#include "../geometry/point2d.hpp"
#include "../geometry/rect2d.hpp"
-#include "../std/deque.hpp"
#include "../std/noncopyable.hpp"
class Framework;
@@ -26,8 +25,6 @@ namespace graphics
class UserMarkContainer : private noncopyable
{
public:
- using UserMarksList = deque<UserMark *>;
-
class Controller
{
public:
@@ -109,7 +106,7 @@ private:
bool m_isVisible;
bool m_isDrawable;
double m_layerDepth;
- UserMarksList m_userMarks;
+ vector<UserMark *> m_userMarks;
};
class SearchUserMarkContainer : public UserMarkContainer