| 904 | } |
| 905 | |
| 906 | void ContextBrowserPlugin::declarationSelectedInUI(const DeclarationPointer& decl) |
| 907 | { |
| 908 | m_useDeclaration = IndexedDeclaration(decl.data()); |
| 909 | KTextEditor::View* view = core()->documentController()->activeTextDocumentView(); |
| 910 | if (view) |
| 911 | m_updateViews << view; |
| 912 | |
| 913 | if (!m_updateViews.isEmpty()) |
| 914 | m_updateTimer->start(highlightingTimeout); // triggers updateViews() |
| 915 | } |
| 916 | |
| 917 | void ContextBrowserPlugin::updateReady(const IndexedString& file, const ReferencedTopDUContext& /*topContext*/) |
| 918 | { |
nothing calls this directly
no test coverage detected