| 510 | } |
| 511 | |
| 512 | void UICodeEditor::reset() { |
| 513 | mDoc->reset(); |
| 514 | mDoc->getHighlighter()->reset(); |
| 515 | invalidateDraw(); |
| 516 | } |
| 517 | |
| 518 | TextDocument::LoadStatus UICodeEditor::loadFromFile( const std::string& path ) { |
| 519 | auto ret = mDoc->loadFromFile( path ); |
no test coverage detected