diff options
| author | Sergey Morozov <[email protected]> | 2018-09-22 14:22:03 +0300 |
|---|---|---|
| committer | Sergey Morozov <[email protected]> | 2018-09-30 07:38:40 +0000 |
| commit | f01ee04f4fa1334ca6e2dcc6c31289676f98d1b1 (patch) | |
| tree | 29dff91cf47e81cb518ac4ca31f964751b7e7261 /src/plugins/cppcheck/cppchecktool.cpp | |
| parent | 546956a302d7a91006460b55e699e1b832b02a3d (diff) | |
Cppcheck: Kill current check process only when needed
Kill only if it processes specified files
Change-Id: I5dee99ec8aeaf3bf4d9dbf6aad195f54176170a2
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppchecktool.cpp')
| -rw-r--r-- | src/plugins/cppcheck/cppchecktool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppchecktool.cpp b/src/plugins/cppcheck/cppchecktool.cpp index cbf53aad796..28111cd3f6e 100644 --- a/src/plugins/cppcheck/cppchecktool.cpp +++ b/src/plugins/cppcheck/cppchecktool.cpp @@ -229,7 +229,7 @@ void CppcheckTool::addToQueue(const Utils::FileNameList &files, CppTools::Projec void CppcheckTool::stop(const Utils::FileNameList &files) { m_runner->removeFromQueue(files); - m_runner->stop(); + m_runner->stop(files); } void CppcheckTool::startParsing() |
