| 2714 | } |
| 2715 | |
| 2716 | bool BambooTracker::pasteOverwritePatternCells(int songNum, int beginTrack, int beginColmn, int beginOrder, |
| 2717 | int beginStep, const Vector2d<std::string>& cells, bool overflow) |
| 2718 | { |
| 2719 | const auto clipped = clipCellsToFitPastedArea(songStyle_.trackAttribs.size(), getPatternSizeFromOrderNumber(songNum, beginOrder), |
| 2720 | beginTrack, beginColmn, beginStep, cells, overflow); |
| 2721 | return comMan_.invoke(std::make_unique<PasteOverwriteCopiedDataToPatternCommand>( |
| 2722 | mod_, songNum, beginTrack, beginColmn, beginOrder, beginStep, clipped)); |
| 2723 | } |
| 2724 | |
| 2725 | bool BambooTracker::pasteInsertPatternCells(int songNum, int beginTrack, int beginColmn, int beginOrder, |
| 2726 | int beginStep, const Vector2d<std::string>& cells) |
no test coverage detected