| 598 | } |
| 599 | |
| 600 | void TabWidget::replaceAll(const QString &fileName, const QString &oldText, |
| 601 | const QString &newText, bool caseSensitive, bool wholeWords) |
| 602 | { |
| 603 | if (auto editor = d->findEditor(fileName)) |
| 604 | d->docFind->replaceAll(editor, oldText, newText, caseSensitive, wholeWords); |
| 605 | } |
| 606 | |
| 607 | void TabWidget::replaceText(const QString &fileName, int line, int index, int length, const QString &after) |
| 608 | { |
nothing calls this directly
no test coverage detected