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:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2018-07-03 17:59:07 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-07-03 18:27:01 +0300
commit041cd3e8aef8de0bad9cee6b090072775dbe0656 (patch)
tree151aadf919c33e344a89087337894ff5ea79565e /drape_frontend/message_subclasses.hpp
parent4c7e19e2d57e4d30bb410f5186c276efb4297a33 (diff)
Fixed calculation of transit scheme state.
Diffstat (limited to 'drape_frontend/message_subclasses.hpp')
-rw-r--r--drape_frontend/message_subclasses.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/drape_frontend/message_subclasses.hpp b/drape_frontend/message_subclasses.hpp
index 6466ff5d3e..3a5fcab0f1 100644
--- a/drape_frontend/message_subclasses.hpp
+++ b/drape_frontend/message_subclasses.hpp
@@ -1053,19 +1053,16 @@ private:
class UpdateTransitSchemeMessage : public Message
{
public:
- UpdateTransitSchemeMessage(TransitDisplayInfos && transitInfos,
- std::vector<MwmSet::MwmId> const & visibleMwms)
- : m_transitInfos(move(transitInfos)), m_visibleMwms(visibleMwms)
+ UpdateTransitSchemeMessage(TransitDisplayInfos && transitInfos)
+ : m_transitInfos(move(transitInfos))
{}
Type GetType() const override { return Message::UpdateTransitScheme; }
TransitDisplayInfos const & GetTransitDisplayInfos() { return m_transitInfos; }
- std::vector<MwmSet::MwmId> const & GetVisibleMwms() const { return m_visibleMwms; }
private:
TransitDisplayInfos m_transitInfos;
- std::vector<MwmSet::MwmId> m_visibleMwms;
};
class RegenerateTransitMessage : public Message