| 1020 | } |
| 1021 | |
| 1022 | void CLogView::OnViewExcludeLines(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1023 | { |
| 1024 | auto messages = GetSelectedMessages(); |
| 1025 | int size = std::min(size_t(100), messages.size()); |
| 1026 | for (int i = 0; i < size; ++i) |
| 1027 | { |
| 1028 | m_filter.messageFilters.push_back(Filter(messages[i], MatchType::Simple, FilterType::Exclude, RGB(255, 255, 255), RGB(0, 0, 0))); |
| 1029 | } |
| 1030 | ApplyFilters(); |
| 1031 | } |
| 1032 | |
| 1033 | void CLogView::OnViewSelectAll(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1034 | { |