| 994 | } |
| 995 | |
| 996 | void BookmarkManager::ResetTrackInfoMark(kml::TrackId trackId) |
| 997 | { |
| 998 | auto trackInfoMark = GetMarkForEdit<TrackInfoMark>(m_trackInfoMarkId); |
| 999 | if (trackInfoMark->GetTrackId() == trackId) |
| 1000 | { |
| 1001 | trackInfoMark->SetPosition(m2::PointD::Zero()); |
| 1002 | trackInfoMark->SetIsVisible(false); |
| 1003 | trackInfoMark->SetTrackId(kml::kInvalidTrackId); |
| 1004 | } |
| 1005 | } |
| 1006 | |
| 1007 | void BookmarkManager::SetTrackSelectionInfo(Track::TrackSelectionInfo const & trackSelectionInfo, bool notifyListeners) |
| 1008 | { |
nothing calls this directly
no test coverage detected