| 103 | // -------------------------------------------------------------------------------------------------------------------- |
| 104 | |
| 105 | void ImGuiTextEditor::setText(const std::string& text) |
| 106 | { |
| 107 | pData->file.clear(); |
| 108 | pData->editor.SetText(text); |
| 109 | } |
| 110 | |
| 111 | std::string ImGuiTextEditor::getText() const |
| 112 | { |
no test coverage detected