| 2767 | {} |
| 2768 | |
| 2769 | bool operator()(kml::MarkGroupId groupId) |
| 2770 | { |
| 2771 | auto const groupType = BookmarkManager::GetGroupType(groupId); |
| 2772 | if (auto const * p = m_manager->FindMarkInRect(groupId, m_rectHolder(groupType), m_findOnlyVisible(groupType), m_d)) |
| 2773 | { |
| 2774 | m_mark = p; |
| 2775 | return true; |
| 2776 | } |
| 2777 | return false; |
| 2778 | } |
| 2779 | |
| 2780 | UserMark const * GetFoundMark() const { return m_mark; } |
| 2781 |
nothing calls this directly
no test coverage detected