diff options
author | Max Kellermann <max@duempel.org> | 2015-02-28 23:17:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-02-28 23:19:34 +0100 |
commit | cdd0ccc67a63e8e4d108cb817f856a227a994242 (patch) | |
tree | ae072332896766237b56384b5e58b581651aeb53 /src/Mapper.cxx | |
parent | a918821868228d4f49d0e96c58bc8a6a3b4a91e0 (diff) |
fs/Path: rename RelativeFS() to Relative()
Diffstat (limited to 'src/Mapper.cxx')
-rw-r--r-- | src/Mapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mapper.cxx b/src/Mapper.cxx index 14718ca09..7189544e7 100644 --- a/src/Mapper.cxx +++ b/src/Mapper.cxx @@ -98,7 +98,7 @@ map_fs_to_utf8(Path _path_fs) if (music_dir_fs.IsNull()) return std::string(); - path_fs = music_dir_fs.RelativeFS(path_fs); + path_fs = music_dir_fs.Relative(path_fs); if (path_fs == nullptr || *path_fs == 0) return std::string(); } |