| 732 | } |
| 733 | |
| 734 | void TabWidget::renameSymbol() |
| 735 | { |
| 736 | auto editor = d->currentTextEditor(); |
| 737 | if (!editor || !editor->hasFocus()) |
| 738 | return; |
| 739 | |
| 740 | editor->renameSymbol(); |
| 741 | } |
| 742 | |
| 743 | void TabWidget::replaceSelectedText(const QString &text) |
| 744 | { |
no test coverage detected