aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmaketool.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2016-10-13 12:02:52 +0200
committerTobias Hunger <tobias.hunger@qt.io>2016-10-17 11:41:51 +0000
commit9ff2bd16d3d3755665559b3472d15d6bd14d9fd9 (patch)
treecab4621f973bbe475e5d94caeba334da68e68628 /src/plugins/cmakeprojectmanager/cmaketool.cpp
parent567db27e57d335bc9154c4f74875c204cc890743 (diff)
CMake: Use Utils::FileName where appropriate
Change-Id: I3ab0a68920e27ebcf4e1dd58180a72ded58b892e Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmaketool.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmaketool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmaketool.cpp b/src/plugins/cmakeprojectmanager/cmaketool.cpp
index c4192b6c872..5e917958f17 100644
--- a/src/plugins/cmakeprojectmanager/cmaketool.cpp
+++ b/src/plugins/cmakeprojectmanager/cmaketool.cpp
@@ -232,7 +232,7 @@ CMakeTool::PathMapper CMakeTool::pathMapper() const
{
if (m_pathMapper)
return m_pathMapper;
- return [](const QString &s) { return s; };
+ return [](const Utils::FileName &fn) { return fn; };
}
void CMakeTool::readInformation(CMakeTool::QueryType type) const