| 114 | } |
| 115 | |
| 116 | void ImGuiTextEditor::setTextLines(const std::vector<std::string>& lines) |
| 117 | { |
| 118 | pData->file.clear(); |
| 119 | pData->editor.SetTextLines(lines); |
| 120 | } |
| 121 | |
| 122 | std::vector<std::string> ImGuiTextEditor::getTextLines() const |
| 123 | { |
nothing calls this directly
no test coverage detected