| 658 | } |
| 659 | |
| 660 | RECT CLogView::GetSubItemRect(int iItem, int iSubItem, unsigned code) const |
| 661 | { |
| 662 | RECT rect; |
| 663 | CListViewCtrl::GetSubItemRect(iItem, iSubItem, code, &rect); |
| 664 | if (iSubItem == 0) |
| 665 | rect.right = rect.left + GetColumnWidth(0); |
| 666 | return rect; |
| 667 | } |
| 668 | |
| 669 | void InsertHighlight(std::vector<Highlight>& highlights, const Highlight& highlight) |
| 670 | { |
nothing calls this directly
no test coverage detected