| 91 | } |
| 92 | |
| 93 | void UndoManager::commandUndo(const MyGUI::UString& _commandName, bool& _result) |
| 94 | { |
| 95 | undo(); |
| 96 | WidgetSelectorManager::getInstance().setSelectedWidget(nullptr); |
| 97 | |
| 98 | _result = true; |
| 99 | } |
| 100 | |
| 101 | void UndoManager::commandRedo(const MyGUI::UString& _commandName, bool& _result) |
| 102 | { |
nothing calls this directly
no test coverage detected