diff options
author | hjk <hjk@qt.io> | 2019-12-17 14:07:53 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2019-12-18 08:43:18 +0000 |
commit | e109b731ad001ba566289b7184799e91b19fbccb (patch) | |
tree | 133667f71377d5af130b776f97d3f090ef1c8138 /src/libs/cplusplus/DependencyTable.cpp | |
parent | e16876df0cd65c40480fcf7f2ae9f16ab66c991c (diff) | |
download | qt-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/libs/cplusplus/DependencyTable.cpp')
-rw-r--r-- | src/libs/cplusplus/DependencyTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/cplusplus/DependencyTable.cpp b/src/libs/cplusplus/DependencyTable.cpp index 8ddc9801d0..4a2b71d053 100644 --- a/src/libs/cplusplus/DependencyTable.cpp +++ b/src/libs/cplusplus/DependencyTable.cpp @@ -29,9 +29,9 @@ using namespace CPlusPlus; -Utils::FilePathList DependencyTable::filesDependingOn(const Utils::FilePath &fileName) const +Utils::FilePaths DependencyTable::filesDependingOn(const Utils::FilePath &fileName) const { - Utils::FilePathList deps; + Utils::FilePaths deps; int index = fileIndex.value(fileName, -1); if (index == -1) |