| 948 | } |
| 949 | |
| 950 | void UniversalLocator::onCodeEditorFocusChange( UICodeEditor* editor ) { |
| 951 | if ( !mLocateTable || !mLocateTable->isVisible() ) |
| 952 | return; |
| 953 | |
| 954 | if ( String::startsWith( mLocateInput->getText(), ". " ) && |
| 955 | editor->getDocument().getURI().toString() != mCurDocURI ) |
| 956 | showDocumentSymbol(); |
| 957 | } |
| 958 | |
| 959 | std::shared_ptr<LSPSymbolInfoModel> UniversalLocator::emptyModel( const String& defTxt, |
| 960 | const std::string& query ) { |
nothing calls this directly
no test coverage detected