summaryrefslogtreecommitdiff
path: root/src/plugins/cppcheck/cppchecktrigger.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-12-17 14:07:53 +0100
committerhjk <hjk@qt.io>2019-12-18 08:43:18 +0000
commite109b731ad001ba566289b7184799e91b19fbccb (patch)
tree133667f71377d5af130b776f97d3f090ef1c8138 /src/plugins/cppcheck/cppchecktrigger.h
parente16876df0cd65c40480fcf7f2ae9f16ab66c991c (diff)
downloadqt-creator-e109b731ad001ba566289b7184799e91b19fbccb.tar.gz
Utils: Rename FilePathList to simply FilePaths
The exact storage type does not really matter here. Change-Id: Iefec40f0f5909c8e7ba3415db4a11962694e1b38 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/cppcheck/cppchecktrigger.h')
-rw-r--r--src/plugins/cppcheck/cppchecktrigger.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cppcheck/cppchecktrigger.h b/src/plugins/cppcheck/cppchecktrigger.h
index a745f232e3..c2bfc13112 100644
--- a/src/plugins/cppcheck/cppchecktrigger.h
+++ b/src/plugins/cppcheck/cppchecktrigger.h
@@ -30,7 +30,7 @@
namespace Utils {
class FilePath;
-using FilePathList = QList<FilePath>;
+using FilePaths = QList<FilePath>;
}
namespace ProjectExplorer {
@@ -64,8 +64,8 @@ private:
void checkChangedDocument(Core::IDocument *document);
void changeCurrentProject(ProjectExplorer::Project *project);
void updateProjectFiles(ProjectExplorer::Project *project);
- void check(const Utils::FilePathList &files);
- void remove(const Utils::FilePathList &files);
+ void check(const Utils::FilePaths &files);
+ void remove(const Utils::FilePaths &files);
CppcheckTextMarkManager &m_marks;
CppcheckTool &m_tool;