| 505 | } |
| 506 | |
| 507 | void TextEditor::removeEOLAnnotation(const QString &title) |
| 508 | { |
| 509 | if (!d->eOLAnnotationRecords.contains(title)) |
| 510 | return; |
| 511 | |
| 512 | auto lineList = d->eOLAnnotationRecords.values(title); |
| 513 | d->eOLAnnotationRecords.remove(title); |
| 514 | |
| 515 | for (int line : lineList) |
| 516 | clearEOLAnnotations(line); |
| 517 | } |
| 518 | |
| 519 | void TextEditor::commentOperation() |
| 520 | { |
no test coverage detected