| 1188 | } |
| 1189 | |
| 1190 | void CLogView::ToggleBookmark(int iItem) |
| 1191 | { |
| 1192 | m_logLines[iItem].bookmark = !m_logLines[iItem].bookmark; |
| 1193 | auto rect = GetSubItemRect(iItem, 0, LVIR_BOUNDS); |
| 1194 | InvalidateRect(&rect); |
| 1195 | } |
| 1196 | |
| 1197 | void CLogView::OnViewBookmark(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1198 | { |
nothing calls this directly
no outgoing calls
no test coverage detected