PlaylistInfo: rename class, use std::string

This commit is contained in:
Max Kellermann
2013-01-02 22:04:03 +01:00
parent 98dbdf72b3
commit 8331de424a
12 changed files with 54 additions and 103 deletions

View File

@@ -62,10 +62,10 @@ DumpSong(song &song, GError **)
}
static bool
DumpPlaylist(const playlist_metadata &playlist,
DumpPlaylist(const PlaylistInfo &playlist,
const directory &directory, GError **)
{
cout << "P " << directory.path << "/" << playlist.name << endl;
cout << "P " << directory.path << "/" << playlist.name.c_str() << endl;
return true;
}