| 1826 | } |
| 1827 | |
| 1828 | bool CLogView::IsIncluded(const Message& msg) |
| 1829 | { |
| 1830 | using debugviewpp::IsIncluded; |
| 1831 | return IsIncluded(m_filter.processFilters, msg.processName, m_matchColors) && IsIncluded(m_filter.messageFilters, msg.text, m_matchColors); |
| 1832 | } |
| 1833 | |
| 1834 | bool CLogView::MatchFilterType(FilterType::type type, const Message& msg) const |
| 1835 | { |
nothing calls this directly
no test coverage detected