| 78 | } |
| 79 | |
| 80 | CFrameSelection CFrameEditorModel::MakeFrameSelection(int frame) const { |
| 81 | CSongView *pSongView = view_->GetSongView(); |
| 82 | return { |
| 83 | {frame, 0}, |
| 84 | {frame + 1, (int)pSongView->GetChannelOrder().GetChannelCount()}, |
| 85 | }; |
| 86 | } |
| 87 | |
| 88 | CFrameSelection CFrameEditorModel::MakeFullSelection() const { |
| 89 | CSongView *pSongView = view_->GetSongView(); |
no test coverage detected