| 480 | } |
| 481 | |
| 482 | void EditorState::notifySettingsWindowEndDialog(Dialog* _dialog, bool _result) |
| 483 | { |
| 484 | MYGUI_ASSERT(mSettingsWindow == _dialog, "mSettingsWindow == _sender"); |
| 485 | |
| 486 | if (_result) |
| 487 | mSettingsWindow->SendCommand("Command_SaveSettings"); |
| 488 | |
| 489 | mSettingsWindow->endModal(); |
| 490 | } |
| 491 | |
| 492 | void EditorState::commandUndo(const MyGUI::UString& _commandName, bool& _result) |
| 493 | { |
nothing calls this directly
no test coverage detected