| 1482 | } |
| 1483 | |
| 1484 | void CLogView::SelectAll() |
| 1485 | { |
| 1486 | int lines = GetItemCount(); |
| 1487 | for (int i = 0; i < lines; ++i) |
| 1488 | SetItemState(i, LVIS_SELECTED, LVIS_SELECTED); |
| 1489 | } |
| 1490 | |
| 1491 | std::wstring CLogView::GetItemWText(int item, int subItem) const |
| 1492 | { |
nothing calls this directly
no test coverage detected