| 905 | } |
| 906 | |
| 907 | void RoutingManager::HideRoutePoint(RouteMarkType type, size_t intermediateIndex) |
| 908 | { |
| 909 | RoutePointsLayout routePoints(*m_bmManager); |
| 910 | RouteMarkPoint * mark = routePoints.GetRoutePointForEdit(type, intermediateIndex); |
| 911 | if (mark != nullptr) |
| 912 | mark->SetIsVisible(false); |
| 913 | } |
| 914 | |
| 915 | bool RoutingManager::IsMyPosition(RouteMarkType type, size_t intermediateIndex) |
| 916 | { |
nothing calls this directly
no test coverage detected