| 42 | } |
| 43 | |
| 44 | TextEditor *SymbolLocatorPrivate::currentEditor() |
| 45 | { |
| 46 | auto tabWidget = workspace->currentTabWidget(); |
| 47 | if (!tabWidget) |
| 48 | return nullptr; |
| 49 | |
| 50 | return tabWidget->currentEditor(); |
| 51 | } |
| 52 | |
| 53 | void SymbolLocatorPrivate::createSymbolItem(const newlsp::DocumentSymbol &symbol) |
| 54 | { |
no test coverage detected