forked from qt-creator/qt-creator
		
	C++ symbols find filter for advanced find.
Required refactoring of the search result window to show real trees of search results. The backend is the backend from the Locator filter, which is a bit outdated now.
This commit is contained in:
		| @@ -313,7 +313,11 @@ void CppFindReferences::searchFinished() | ||||
|  | ||||
| void CppFindReferences::openEditor(const Find::SearchResultItem &item) | ||||
| { | ||||
|     TextEditor::BaseTextEditor::openEditorAt(item.fileName, item.lineNumber, item.searchTermStart); | ||||
|     if (item.path.size() > 0) { | ||||
|         TextEditor::BaseTextEditor::openEditorAt(item.path.first(), item.lineNumber, item.textMarkPos); | ||||
|     } else { | ||||
|         Core::EditorManager::instance()->openEditor(item.text); | ||||
|     } | ||||
| } | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user