| 1151 | void CEditorView::OnFileRemoveExtraPoints() { RemoveAllDuplicateAndUnusedPoints(); } |
| 1152 | |
| 1153 | void CEditorView::OnRoomBuildSmoothBridge() { |
| 1154 | if ((Markedroomp == NULL) || (Markedface == -1)) { |
| 1155 | OutrageMessageBox("You must have a marked face to use this function."); |
| 1156 | return; |
| 1157 | } |
| 1158 | |
| 1159 | if ((Markedroomp == Curroomp) && (Markedface == Curface)) { |
| 1160 | OutrageMessageBox("The marked room:face must be different from the current room:face."); |
| 1161 | return; |
| 1162 | } |
| 1163 | |
| 1164 | BuildSmoothBridge(Markedroomp, Markedface, Curroomp, Curface); |
| 1165 | } |
| 1166 | |
| 1167 | void CEditorView::OnRoomJoinRoomsExact() { |
| 1168 | if ((Markedroomp == NULL) || (Markedface == -1)) { |
nothing calls this directly
no test coverage detected