| 832 | } |
| 833 | |
| 834 | bool TabWidget::clearEOLAnnotation(const QString &fileName, const QString &title) |
| 835 | { |
| 836 | if (auto editor = d->findEditor(fileName)) { |
| 837 | editor->removeEOLAnnotation(title); |
| 838 | return true; |
| 839 | } |
| 840 | |
| 841 | return false; |
| 842 | } |
| 843 | |
| 844 | void TabWidget::clearAllEOLAnnotation(const QString &title) |
| 845 | { |
nothing calls this directly
no test coverage detected