MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / OnViewExcludeLines

Method OnViewExcludeLines

DebugView++/LogView.cpp:1022–1031  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1020}
1021
1022void 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
1033void CLogView::OnViewSelectAll(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/)
1034{

Callers

nothing calls this directly

Calls 2

FilterClass · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected