| 2389 | AttachGroup(); |
| 2390 | } |
| 2391 | |
| 2392 | void CMainFrame::OnEditCut() { |
| 2393 | if (CopySelectedRooms()) { |
| 2394 | int n = N_selected_rooms; |
| 2395 | DeleteGroup(N_selected_rooms, Selected_rooms); |
| 2396 | EditorStatus("%d rooms cut to Scrap", n); |
| 2397 | ClearRoomSelectedList(); |
| 2398 | } |
| 2399 | } |
| 2400 | |
| 2401 | void CMainFrame::OnEditDelete() { |
nothing calls this directly
no test coverage detected