| 714 | } |
| 715 | |
| 716 | void TabWidget::followSymbolUnderCursor() |
| 717 | { |
| 718 | auto editor = d->currentTextEditor(); |
| 719 | if (!editor || !editor->hasFocus()) |
| 720 | return; |
| 721 | |
| 722 | editor->followSymbolUnderCursor(); |
| 723 | } |
| 724 | |
| 725 | void TabWidget::findUsage() |
| 726 | { |
no test coverage detected