| 912 | } |
| 913 | |
| 914 | SelectionInfo CLogView::GetViewRange() const |
| 915 | { |
| 916 | if (m_logLines.empty()) |
| 917 | return SelectionInfo(); |
| 918 | |
| 919 | return SelectionInfo(m_logLines.front().line, m_logLines.back().line, m_logLines.size()); |
| 920 | } |
| 921 | |
| 922 | LRESULT CLogView::OnOdStateChanged(NMHDR* pnmh) |
| 923 | { |
no test coverage detected