| 844 | //////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 845 | |
| 846 | void CFamiTrackerView::OnEditCopy() |
| 847 | { |
| 848 | if (m_pPatternEditor->GetSelectionCondition() == sel_condition_t::NONTERMINAL_SKIP) { // // // |
| 849 | CMainFrame *pMainFrm = GetMainFrame(); // // // |
| 850 | MessageBeep(MB_ICONWARNING); |
| 851 | pMainFrm->SetMessageText(IDS_SEL_NONTERMINAL_SKIP); |
| 852 | return; |
| 853 | } |
| 854 | |
| 855 | CClipboard::CopyToClipboard(this, m_iClipboard, m_pPatternEditor->Copy()); // // // |
| 856 | } |
| 857 | |
| 858 | void CFamiTrackerView::OnEditCut() |
| 859 | { |
nothing calls this directly
no test coverage detected