| 140 | } |
| 141 | |
| 142 | String CodeEditingManager::GetName(CodeEditorTypes editorType) |
| 143 | { |
| 144 | const auto editor = GetCodeEditor(editorType); |
| 145 | if (editor) |
| 146 | { |
| 147 | return editor->GetName(); |
| 148 | } |
| 149 | else |
| 150 | { |
| 151 | LOG(Warning, "Missing code editor type {0}", (int32)editorType); |
| 152 | return String::Empty; |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | String CodeEditingManager::GetGenerateProjectCustomArgs(CodeEditorTypes editorType) |
| 157 | { |
no outgoing calls
no test coverage detected