| 423 | // ### SwitchPartUndoStep ### |
| 424 | |
| 425 | SwitchPartUndoStep::SwitchPartUndoStep(Map *map, int source, int target_index) |
| 426 | : ObjectModifyingUndoStep(SwitchPartUndoStepType, map, target_index) |
| 427 | , source_index(source) |
| 428 | { |
| 429 | // nothing else |
| 430 | } |
| 431 | |
| 432 | SwitchPartUndoStep::SwitchPartUndoStep(Map *map) |
| 433 | : ObjectModifyingUndoStep(SwitchPartUndoStepType, map) |
nothing calls this directly
no test coverage detected