| 134 | } |
| 135 | |
| 136 | void CBookmarkCollection::RemoveAt(unsigned Frame, unsigned Row) |
| 137 | { |
| 138 | const CBookmark tmp(Frame, Row); |
| 139 | m_pBookmark.erase( |
| 140 | std::remove_if(m_pBookmark.begin(), m_pBookmark.end(), |
| 141 | [&] (const std::unique_ptr<CBookmark> &a) { return *a == tmp; }), |
| 142 | m_pBookmark.end()); |
| 143 | } |
| 144 | |
| 145 | CBookmark *CBookmarkCollection::FindNext(unsigned Frame, unsigned Row) const |
| 146 | { |
no test coverage detected