| 281 | } |
| 282 | |
| 283 | void CSampleEditorDlg::SelectionChanged() |
| 284 | { |
| 285 | if (m_pSampleEditorView->HasSelection()) { |
| 286 | GetDlgItem(IDC_DELETE)->EnableWindow(TRUE); |
| 287 | GetDlgItem(IDC_TILT)->EnableWindow(TRUE); |
| 288 | } |
| 289 | else { |
| 290 | GetDlgItem(IDC_DELETE)->EnableWindow(FALSE); |
| 291 | GetDlgItem(IDC_TILT)->EnableWindow(FALSE); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | void CSampleEditorDlg::UpdateStatus(int Index, LPCWSTR Text) // // // |
| 296 | { |
no test coverage detected