| 1886 | } |
| 1887 | |
| 1888 | void MapEditorController::cut() |
| 1889 | { |
| 1890 | copy(); |
| 1891 | //: Past tense. Displayed when an Edit > Cut operation is completed. |
| 1892 | window->showStatusBarMessage(tr("Cut %n object(s)", nullptr, map->getNumSelectedObjects()), 2000); |
| 1893 | map->deleteSelectedObjects(); |
| 1894 | } |
| 1895 | |
| 1896 | void MapEditorController::copy() |
| 1897 | { |
nothing calls this directly
no test coverage detected