| 2723 | } |
| 2724 | |
| 2725 | bool BambooTracker::pasteInsertPatternCells(int songNum, int beginTrack, int beginColmn, int beginOrder, |
| 2726 | int beginStep, const Vector2d<std::string>& cells) |
| 2727 | { |
| 2728 | const auto clipped = clipCellsToFitPastedArea(songStyle_.trackAttribs.size(), getPatternSizeFromOrderNumber(songNum, beginOrder), |
| 2729 | beginTrack, beginColmn, beginStep, cells, false); |
| 2730 | return comMan_.invoke(std::make_unique<PasteInsertCopiedDataToPatternCommand>( |
| 2731 | mod_, songNum, beginTrack, beginColmn, beginOrder, beginStep, clipped)); |
| 2732 | } |
| 2733 | |
| 2734 | bool BambooTracker::erasePatternCells(int songNum, int beginTrack, int beginColmn, int beginOrder, int beginStep, |
| 2735 | int endTrack, int endColmn, int endStep) |
no test coverage detected