| 1039 | } |
| 1040 | |
| 1041 | void Map::undoCmd(const cmd::ArgumentList& args) |
| 1042 | { |
| 1043 | try |
| 1044 | { |
| 1045 | getUndoSystem().undo(); |
| 1046 | } |
| 1047 | catch (const std::runtime_error& err) |
| 1048 | { |
| 1049 | throw cmd::ExecutionNotPossible(err.what()); |
| 1050 | } |
| 1051 | } |
| 1052 | |
| 1053 | void Map::redoCmd(const cmd::ArgumentList& args) |
| 1054 | { |
nothing calls this directly
no test coverage detected