| 369 | } |
| 370 | |
| 371 | void CSampleEditorView::UpdateInfo() |
| 372 | { |
| 373 | if (!m_iSize) |
| 374 | return; |
| 375 | |
| 376 | static_cast<CSampleEditorDlg *>(GetParent())->UpdateStatus(1, AfxFormattedW(ID_INDICATOR_DPCM_SIZE, FormattedW(L"%i", m_iSize / 8))); // // // |
| 377 | static_cast<CSampleEditorDlg *>(GetParent())->UpdateStatus(2, AfxFormattedW(ID_INDICATOR_DPCM_ENDPOS, FormattedW(L"%i", m_pSamples[m_iSize - 1]))); |
| 378 | } |
| 379 | |
| 380 | void CSampleEditorView::OnSize(UINT nType, int cx, int cy) |
| 381 | { |
nothing calls this directly
no test coverage detected