| 571 | } |
| 572 | |
| 573 | void CLogView::MeasureItem(MEASUREITEMSTRUCT* pMeasureItemStruct) |
| 574 | { |
| 575 | CClientDC dc(*this); |
| 576 | |
| 577 | Win32::GdiObjectSelection font(dc, GetFont()); |
| 578 | TEXTMETRIC metric; |
| 579 | dc.GetTextMetrics(&metric); |
| 580 | pMeasureItemStruct->itemHeight = metric.tmHeight; |
| 581 | } |
| 582 | |
| 583 | void CLogView::DrawItem(DRAWITEMSTRUCT* pDrawItemStruct) |
| 584 | { |
nothing calls this directly
no outgoing calls
no test coverage detected