| 822 | } |
| 823 | |
| 824 | bool TabWidget::eOLAnnotate(const QString &fileName, const QString &title, const QString &contents, int line, int type) |
| 825 | { |
| 826 | if (auto editor = d->findEditor(fileName)) { |
| 827 | editor->addEOLAnnotation(title, contents, line, type); |
| 828 | return true; |
| 829 | } |
| 830 | |
| 831 | return false; |
| 832 | } |
| 833 | |
| 834 | bool TabWidget::clearEOLAnnotation(const QString &fileName, const QString &title) |
| 835 | { |
no test coverage detected