| 1005 | } |
| 1006 | |
| 1007 | void CLogView::OnViewResetToLine(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1008 | { |
| 1009 | int begin = GetNextItem(-1, LVNI_FOCUSED); |
| 1010 | if (begin < 0) |
| 1011 | return; |
| 1012 | ResetToLine(m_logLines[begin].line); |
| 1013 | } |
| 1014 | |
| 1015 | void CLogView::ResetToLine(int line) |
| 1016 | { |
nothing calls this directly
no outgoing calls
no test coverage detected