| 1391 | } |
| 1392 | |
| 1393 | void CLogView::StopScrolling() |
| 1394 | { |
| 1395 | m_autoScrollDown = false; |
| 1396 | for (auto& filter : m_filter.messageFilters) |
| 1397 | { |
| 1398 | if (filter.filterType == FilterType::Track) |
| 1399 | { |
| 1400 | filter.enable = false; |
| 1401 | } |
| 1402 | } |
| 1403 | for (auto& filter : m_filter.processFilters) |
| 1404 | { |
| 1405 | if (filter.filterType == FilterType::Track) |
| 1406 | { |
| 1407 | filter.enable = false; |
| 1408 | } |
| 1409 | } |
| 1410 | StopTracking(); |
| 1411 | } |
| 1412 | |
| 1413 | void CLogView::ClearSelection() |
| 1414 | { |
nothing calls this directly
no outgoing calls
no test coverage detected