| 266 | } |
| 267 | |
| 268 | void CEtwView::UpdateEventStatus() { |
| 269 | CString text; |
| 270 | text.Format(L"Events: %u", (uint32_t)m_Events.size()); |
| 271 | GetFrame()->SetPaneText(2, text); |
| 272 | } |
| 273 | |
| 274 | bool CEtwView::IsSortable(HWND, int col) const { |
| 275 | return col != 8 && (!m_IsMonitoring || GetFrame()->GetTraceManager().IsPaused()); |
nothing calls this directly
no test coverage detected