| 124 | } |
| 125 | |
| 126 | void EditorState::command_CodeGenerator(const MyGUI::UString& _commandName, bool& _result) |
| 127 | { |
| 128 | if (!checkCommand()) |
| 129 | return; |
| 130 | |
| 131 | mCodeGenerator->loadTemplate(); |
| 132 | mCodeGenerator->doModal(); |
| 133 | |
| 134 | _result = true; |
| 135 | } |
| 136 | |
| 137 | void EditorState::command_OpenRecentFile(const MyGUI::UString& _commandName, bool& _result) |
| 138 | { |
nothing calls this directly
no test coverage detected