| 498 | } |
| 499 | |
| 500 | void TextEditor::addEOLAnnotation(const QString &title, const QString &content, int line, int type) |
| 501 | { |
| 502 | d->eOLAnnotationRecords.insertMulti(title, line); |
| 503 | auto style = d->createAnnotationStyle(type); |
| 504 | eOLAnnotate(line, content, style); |
| 505 | } |
| 506 | |
| 507 | void TextEditor::removeEOLAnnotation(const QString &title) |
| 508 | { |
no test coverage detected