| 427 | } |
| 428 | |
| 429 | void CBigPoolView::UpdatePaneText() { |
| 430 | if (IsWindowVisible()) { |
| 431 | CString text; |
| 432 | text.Format(L"%d BigPools", GetItemCount()); |
| 433 | m_pFrame->SetPaneText(2, text); |
| 434 | text.Format(L"Paged: %u MB", (unsigned)(m_TotalPaged >> 20)); |
| 435 | m_pFrame->SetPaneText(3, text); |
| 436 | text.Format(L"Non Paged: %u MB", (unsigned)(m_TotalNonPaged >> 20)); |
| 437 | m_pFrame->SetPaneText(4, text); |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | LRESULT CBigPoolView::OnRBtnDown(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { |
| 442 | CMenu menu; |
no test coverage detected