| 413 | } |
| 414 | |
| 415 | LRESULT CLogView::OnClick(NMHDR* pnmh) |
| 416 | { |
| 417 | auto& nmhdr = *reinterpret_cast<NMITEMACTIVATE*>(pnmh); |
| 418 | |
| 419 | LVHITTESTINFO info; |
| 420 | info.flags = 0; |
| 421 | info.pt = nmhdr.ptAction; |
| 422 | SubItemHitTest(&info); |
| 423 | if ((info.flags & LVHT_ONITEM) != 0 && info.iSubItem == ColumnToSubItem(Column::Bookmark)) |
| 424 | ToggleBookmark(info.iItem); |
| 425 | |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | void CLogView::OnLButtonDown(UINT flags, CPoint point) |
| 430 | { |
nothing calls this directly
no outgoing calls
no test coverage detected