| 507 | } |
| 508 | |
| 509 | void EditorState::notifySettingsWindowEndDialog(Dialog* _dialog, bool _result) |
| 510 | { |
| 511 | MYGUI_ASSERT(mSettingsWindow == _dialog, "mSettingsWindow == _sender"); |
| 512 | |
| 513 | if (_result) |
| 514 | mSettingsWindow->SendCommand("Command_SaveSettings"); |
| 515 | |
| 516 | mSettingsWindow->endModal(); |
| 517 | } |
| 518 | |
| 519 | void EditorState::commandUndo(const MyGUI::UString& _commandName, bool& _result) |
| 520 | { |
nothing calls this directly
no test coverage detected