forked from qt-creator/qt-creator
ClangTools: Add automatic clang tool runner for open documents
Fixes: QTCREATORBUG-23349 Change-Id: I81197180c9d69c7df6184f8fcbf05f2256eaf7f6 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -70,16 +70,16 @@ public:
|
||||
~ClangToolsProjectSettings() override;
|
||||
|
||||
bool useGlobalSettings() const { return m_useGlobalSettings; }
|
||||
void setUseGlobalSettings(bool useGlobalSettings) { m_useGlobalSettings = useGlobalSettings; }
|
||||
void setUseGlobalSettings(bool useGlobalSettings);
|
||||
|
||||
RunSettings runSettings() const { return m_runSettings; }
|
||||
void setRunSettings(const RunSettings &settings) { m_runSettings = settings; }
|
||||
void setRunSettings(const RunSettings &settings);
|
||||
|
||||
QSet<Utils::FilePath> selectedDirs() const { return m_selectedDirs; }
|
||||
void setSelectedDirs(const QSet<Utils::FilePath> &value) { m_selectedDirs = value; }
|
||||
void setSelectedDirs(const QSet<Utils::FilePath> &value);
|
||||
|
||||
QSet<Utils::FilePath> selectedFiles() const { return m_selectedFiles; }
|
||||
void setSelectedFiles(const QSet<Utils::FilePath> &value) { m_selectedFiles = value; }
|
||||
void setSelectedFiles(const QSet<Utils::FilePath> &value);
|
||||
|
||||
SuppressedDiagnosticsList suppressedDiagnostics() const { return m_suppressedDiagnostics; }
|
||||
void addSuppressedDiagnostic(const SuppressedDiagnostic &diag);
|
||||
@@ -91,6 +91,7 @@ public:
|
||||
|
||||
signals:
|
||||
void suppressedDiagnosticsChanged();
|
||||
void changed();
|
||||
|
||||
private:
|
||||
void load();
|
||||
|
||||
Reference in New Issue
Block a user