From 466ca0429ee28ce9070378d5545667529ca9206e Mon Sep 17 00:00:00 2001 From: Sergey Magidovich Date: Tue, 8 Aug 2017 14:00:30 +0300 Subject: [PATCH] Fix build after rebase. --- .../openlr_assessment_tool/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp b/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp index aae92cc09d..72c020e249 100644 --- a/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp +++ b/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp @@ -87,7 +87,7 @@ public: void VisualizePoints(std::vector 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(); }