forked from qt-creator/qt-creator
CppCheck: Use more FilePath
Change-Id: I45da67df4b76032303b57f567d73ae01bf9f2e91 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -45,7 +45,7 @@ public:
|
||||
explicit CppcheckRunner(CppcheckTool &tool);
|
||||
~CppcheckRunner() override;
|
||||
|
||||
void reconfigure(const QString &binary, const QString &arguments);
|
||||
void reconfigure(const Utils::FilePath &binary, const QString &arguments);
|
||||
void addToQueue(const Utils::FilePaths &files,
|
||||
const QString &additionalArguments = {});
|
||||
void removeFromQueue(const Utils::FilePaths &files);
|
||||
@@ -63,7 +63,7 @@ private:
|
||||
|
||||
CppcheckTool &m_tool;
|
||||
Utils::QtcProcess *m_process = nullptr;
|
||||
QString m_binary;
|
||||
Utils::FilePath m_binary;
|
||||
QString m_arguments;
|
||||
QHash<QString, Utils::FilePaths> m_queue;
|
||||
Utils::FilePaths m_currentFiles;
|
||||
|
||||
Reference in New Issue
Block a user