From e1de989e16ee913dca41062d26313f675e1bdfcc Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Mon, 10 Jul 2017 09:53:34 +0200 Subject: Clang: Show inline diagnostics only for project files When navigating to headers that are not part of the project, avoid showing the inline diagnostics. In most cases, these files can't be changed. This helps also for the session-load case where files are opened/parsed when no project information is available yet. Change-Id: I7fce24af78b3b1efbf64dd27d8ca2a053e02d4ec Reviewed-by: David Schulz --- src/plugins/clangcodemodel/clangdiagnosticmanager.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/plugins/clangcodemodel/clangdiagnosticmanager.cpp') diff --git a/src/plugins/clangcodemodel/clangdiagnosticmanager.cpp b/src/plugins/clangcodemodel/clangdiagnosticmanager.cpp index f5fe4d6368..c8da6e6c6a 100644 --- a/src/plugins/clangcodemodel/clangdiagnosticmanager.cpp +++ b/src/plugins/clangcodemodel/clangdiagnosticmanager.cpp @@ -376,9 +376,11 @@ void ClangDiagnosticManager::generateEditorSelections() } void ClangDiagnosticManager::processNewDiagnostics( - const QVector &allDiagnostics) + const QVector &allDiagnostics, + bool showTextMarkAnnotations) { m_diagnosticsInvalidated = false; + m_showTextMarkAnnotations = showTextMarkAnnotations; filterDiagnostics(allDiagnostics); generateTextMarks(); @@ -401,7 +403,8 @@ void ClangDiagnosticManager::addClangTextMarks( m_clangTextMarks.erase(it, m_clangTextMarks.end()); delete mark; }; - auto textMark = new ClangTextMark(filePath(), diagnostic, onMarkRemoved); + auto textMark = new ClangTextMark(filePath(), diagnostic, onMarkRemoved, + m_showTextMarkAnnotations); m_clangTextMarks.push_back(textMark); m_textDocument->addMark(textMark); } -- cgit v1.2.1