| 814 | } |
| 815 | |
| 816 | QString TabWidget::lineText(const QString &fileName, int line) |
| 817 | { |
| 818 | if (auto editor = d->findEditor(fileName)) |
| 819 | return editor->text(line); |
| 820 | |
| 821 | return ""; |
| 822 | } |
| 823 | |
| 824 | bool TabWidget::eOLAnnotate(const QString &fileName, const QString &title, const QString &contents, int line, int type) |
| 825 | { |
nothing calls this directly
no test coverage detected