fs/Path: rename RelativeFS() to Relative()

This commit is contained in:
Max Kellermann
2015-02-28 23:17:17 +01:00
parent a918821868
commit cdd0ccc67a
4 changed files with 4 additions and 4 deletions

View File

@@ -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();
}