| 1204 | } |
| 1205 | |
| 1206 | void CLogView::FindBookmark(int direction) |
| 1207 | { |
| 1208 | int line = FindLine([](const LogLine& line) { return line.bookmark; }, direction); |
| 1209 | if (line >= 0) |
| 1210 | ScrollToIndex(line, false); |
| 1211 | } |
| 1212 | |
| 1213 | void CLogView::OnViewNextBookmark(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1214 | { |
nothing calls this directly
no outgoing calls
no test coverage detected