| 67 | } |
| 68 | |
| 69 | void ImGuiTextEditor::setFileWithKnownText(const std::string& file, const std::string& text) |
| 70 | { |
| 71 | pData->file = file; |
| 72 | pData->editor.SetText(text); |
| 73 | } |
| 74 | |
| 75 | std::string ImGuiTextEditor::getFile() const |
| 76 | { |
no test coverage detected