Fix build after rebase.

This commit is contained in:
Sergey Magidovich 2017-08-08 14:00:30 +03:00 committed by Yuri Gorshenin
parent 2ca30b7f0f
commit 466ca0429e

View file

@ -87,7 +87,7 @@ public:
void VisualizePoints(std::vector<m2::PointD> const & points) override
{
UserMarkControllerGuard g(m_bm, UserMarkType::DEBUG_MARK);
UserMarkNotificationGuard g(m_bm, UserMarkType::DEBUG_MARK);
g.m_controller.SetIsVisible(true);
g.m_controller.SetIsDrawable(true);
for (auto const & p : points)
@ -96,7 +96,7 @@ public:
void ClearAllVisualizedPoints() override
{
UserMarkControllerGuard g(m_bm, UserMarkType::DEBUG_MARK);
UserMarkNotificationGuard g(m_bm, UserMarkType::DEBUG_MARK);
g.m_controller.Clear();
}