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(); }