diff options
author | hjk <[email protected]> | 2019-12-17 14:07:53 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2019-12-18 08:43:18 +0000 |
commit | e109b731ad001ba566289b7184799e91b19fbccb (patch) | |
tree | 133667f71377d5af130b776f97d3f090ef1c8138 /src/plugins/cppcheck/cppchecktextmarkmanager.cpp | |
parent | e16876df0cd65c40480fcf7f2ae9f16ab66c991c (diff) |
Utils: Rename FilePathList to simply FilePaths
The exact storage type does not really matter here.
Change-Id: Iefec40f0f5909c8e7ba3415db4a11962694e1b38
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppchecktextmarkmanager.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppchecktextmarkmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppchecktextmarkmanager.cpp b/src/plugins/cppcheck/cppchecktextmarkmanager.cpp index 9c2d50c6aa5..50fffe4db07 100644 --- a/src/plugins/cppcheck/cppchecktextmarkmanager.cpp +++ b/src/plugins/cppcheck/cppchecktextmarkmanager.cpp @@ -45,7 +45,7 @@ void CppcheckTextMarkManager::add(const Diagnostic &diagnostic) fileMarks.push_back(std::make_unique<CppcheckTextMark>(diagnostic)); } -void CppcheckTextMarkManager::clearFiles(const Utils::FilePathList &files) +void CppcheckTextMarkManager::clearFiles(const Utils::FilePaths &files) { if (m_marks.empty()) return; |