diff options
author | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2016-01-08 16:56:35 +0100 |
---|---|---|
committer | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2016-01-13 14:12:08 +0000 |
commit | 42d570a3fe89da30ebbc280c79f5565471786db6 (patch) | |
tree | 59e8f41c94fa5ea1fb0628ee3ee24940007d0f61 /src/plugins/classview/classviewparser.cpp | |
parent | 0e012a835b4d7e086eb954a210a10871dc28726e (diff) | |
download | qt-creator-42d570a3fe89da30ebbc280c79f5565471786db6.tar.gz |
Rename Project::ExcludeGeneratedFiles
We want to distinguish between source files and generated files. So
let's call them by their names.
Change-Id: I324c4b82ca7fb7d8d0e175ea6c4f14f1306ec929
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/classview/classviewparser.cpp')
-rw-r--r-- | src/plugins/classview/classviewparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/classview/classviewparser.cpp b/src/plugins/classview/classviewparser.cpp index 93b9f9ed7b..838a59e15c 100644 --- a/src/plugins/classview/classviewparser.cpp +++ b/src/plugins/classview/classviewparser.cpp @@ -651,7 +651,7 @@ void Parser::resetData(const CPlusPlus::Snapshot &snapshot) // check all projects foreach (const Project *prj, SessionManager::projects()) { if (prj) - fileList += prj->files(Project::ExcludeGeneratedFiles); + fileList += prj->files(Project::SourceFiles); } setFileList(fileList); |