ClangTools: Prompt for files to analyze

If the run button is clicked, the user is prompted to select the files
for analysis.

Change-Id: I21e4ee6b7c14392a8c1a901ac7aa1c9c16e30f0d
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
Nikolai Kosjar
2018-05-02 14:51:05 +02:00
parent ef528e1801
commit 1bc605d050
22 changed files with 546 additions and 61 deletions

View File

@@ -33,8 +33,10 @@ using namespace ProjectExplorer;
namespace ClangTools {
namespace Internal {
ClangTidyClazyRunControl::ClangTidyClazyRunControl(RunControl *runControl, Target *target)
: ClangToolRunControl(runControl, target)
ClangTidyClazyRunControl::ClangTidyClazyRunControl(RunControl *runControl,
Target *target,
const FileInfos &fileInfos)
: ClangToolRunControl(runControl, target, fileInfos)
{
setDisplayName("ClangTidyClazyRunner");
init();