forked from qt-creator/qt-creator
		
	CppEditor: Remove some virtual functions from ModelManagerSupport
These were never called via the base pointer. Change-Id: Ib233d9e93d80b1fbcc09a5b7b07d9fa3b8615f66 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
		@@ -217,11 +217,6 @@ ClangModelManagerSupport::~ClangModelManagerSupport()
 | 
			
		||||
    m_instance = nullptr;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
CppEditor::CppCompletionAssistProvider *ClangModelManagerSupport::completionAssistProvider()
 | 
			
		||||
{
 | 
			
		||||
    return nullptr;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void ClangModelManagerSupport::followSymbol(const CppEditor::CursorInEditor &data,
 | 
			
		||||
                  const Utils::LinkHandler &processLinkCallback, bool resolveTarget,
 | 
			
		||||
                  bool inNextSplit)
 | 
			
		||||
@@ -306,11 +301,6 @@ void ClangModelManagerSupport::switchHeaderSource(const Utils::FilePath &filePat
 | 
			
		||||
    CppModelManager::switchHeaderSource(inNextSplit, CppModelManager::Backend::Builtin);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
std::unique_ptr<CppEditor::AbstractOverviewModel> ClangModelManagerSupport::createOverviewModel()
 | 
			
		||||
{
 | 
			
		||||
    return {};
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool ClangModelManagerSupport::usesClangd(const TextEditor::TextDocument *document) const
 | 
			
		||||
{
 | 
			
		||||
    return clientForFile(document->filePath());
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user