summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/fileinsessionfinder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/fileinsessionfinder.cpp')
-rw-r--r--src/plugins/projectexplorer/fileinsessionfinder.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/fileinsessionfinder.cpp b/src/plugins/projectexplorer/fileinsessionfinder.cpp
index 8d42c409ad..204fa0f9af 100644
--- a/src/plugins/projectexplorer/fileinsessionfinder.cpp
+++ b/src/plugins/projectexplorer/fileinsessionfinder.cpp
@@ -79,11 +79,12 @@ FilePathList FileInSessionFinder::doFindFile(const FilePath &filePath)
return m_finder.findFile(QUrl::fromLocalFile(filePath.toString()));
}
+} // namespace Internal
+
FilePathList findFileInSession(const FilePath &filePath)
{
- static FileInSessionFinder finder;
+ static Internal::FileInSessionFinder finder;
return finder.doFindFile(filePath);
}
-} // namespace Internal
} // namespace ProjectExplorer