| 562 | } |
| 563 | |
| 564 | bool SearchMarks::IsThereSearchMarkForFeature(FeatureID const & featureId) const |
| 565 | { |
| 566 | for (auto const markId : m_bmManager->GetUserMarkIds(UserMark::Type::SEARCH)) |
| 567 | if (m_bmManager->GetUserMark(markId)->GetFeatureID() == featureId) |
| 568 | return true; |
| 569 | return false; |
| 570 | } |
| 571 | |
| 572 | void SearchMarks::OnActivate(FeatureID const & featureId) |
| 573 | { |
no test coverage detected