| 103 | } |
| 104 | |
| 105 | void EditorState::notifySettingsWindowEndDialog(Dialog* _dialog, bool _result) |
| 106 | { |
| 107 | MYGUI_ASSERT(mSettingsWindow == _dialog, "mSettingsWindow == _sender"); |
| 108 | |
| 109 | if (_result) |
| 110 | mSettingsWindow->SendCommand("Command_SaveSettings"); |
| 111 | |
| 112 | mSettingsWindow->endModal(); |
| 113 | } |
| 114 | |
| 115 | void EditorState::command_Settings(const MyGUI::UString& _commandName, bool& _result) |
| 116 | { |
nothing calls this directly
no test coverage detected