| 113 | } |
| 114 | |
| 115 | void EditorState::command_Settings(const MyGUI::UString& _commandName, bool& _result) |
| 116 | { |
| 117 | if (!checkCommand()) |
| 118 | return; |
| 119 | |
| 120 | mSettingsWindow->SendCommand("Command_LoadSettings"); |
| 121 | mSettingsWindow->doModal(); |
| 122 | |
| 123 | _result = true; |
| 124 | } |
| 125 | |
| 126 | void EditorState::command_CodeGenerator(const MyGUI::UString& _commandName, bool& _result) |
| 127 | { |
nothing calls this directly
no test coverage detected