| 2398 | } |
| 2399 | } |
| 2400 | |
| 2401 | void CMainFrame::OnEditDelete() { |
| 2402 | if (N_selected_rooms == 0) { |
| 2403 | OutrageMessageBox("You must have rooms selected for this operation."); |
| 2404 | return; |
| 2405 | } |
| 2406 | |
| 2407 | DeleteGroup(N_selected_rooms, Selected_rooms); |
| 2408 | EditorStatus("%d rooms deleted", N_selected_rooms); |
| 2409 | ClearRoomSelectedList(); |
| 2410 | } |
| 2411 | |
| 2412 | void CMainFrame::OnObjectDeleteObject() { |
nothing calls this directly
no test coverage detected