MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / UpdatePaneText

Method UpdatePaneText

WinArk/BigPoolView.cpp:429–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

427}
428
429void 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
441LRESULT CBigPoolView::OnRBtnDown(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) {
442 CMenu menu;

Callers 1

OnTcnSelChangeMethod · 0.45

Calls 1

SetPaneTextMethod · 0.80

Tested by

no test coverage detected