SongPrint: remove Storage::MapToRelativeUTF8() call

This code (added 7 years ago with commit b233c145f) has been obsoleted
by the SongLoader class (added 3 years ago).
This commit is contained in:
Max Kellermann
2017-02-24 13:56:13 +01:00
parent cd522f524d
commit 71ce1a25dd
12 changed files with 71 additions and 107 deletions

View File

@@ -23,22 +23,17 @@
struct LightSong;
class DetachedSong;
class Response;
struct Partition;
void
song_print_info(Response &r, Partition &partition,
const DetachedSong &song, bool base=false);
song_print_info(Response &r, const DetachedSong &song, bool base=false);
void
song_print_info(Response &r, Partition &partition,
const LightSong &song, bool base=false);
song_print_info(Response &r, const LightSong &song, bool base=false);
void
song_print_uri(Response &r, Partition &partition,
const LightSong &song, bool base=false);
song_print_uri(Response &r, const LightSong &song, bool base=false);
void
song_print_uri(Response &r, Partition &partition,
const DetachedSong &song, bool base=false);
song_print_uri(Response &r, const DetachedSong &song, bool base=false);
#endif