diff options
author | Max Kellermann <max@duempel.org> | 2013-01-07 10:55:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-07 11:35:35 +0100 |
commit | 52638c68f51209dc6c5a966feeadffc5b922f919 (patch) | |
tree | c69b6e30407f7c80cc1b8a3aa3af408c60a42262 /src/PlaylistQueue.cxx | |
parent | 400ff1c81253d29b127834c0b5367e83bbb3430c (diff) | |
download | mpd-52638c68f51209dc6c5a966feeadffc5b922f919.tar.gz mpd-52638c68f51209dc6c5a966feeadffc5b922f919.tar.xz mpd-52638c68f51209dc6c5a966feeadffc5b922f919.zip |
Playlist: convert functions to methods
Diffstat (limited to 'src/PlaylistQueue.cxx')
-rw-r--r-- | src/PlaylistQueue.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistQueue.cxx b/src/PlaylistQueue.cxx index da9f2c370..1335fa401 100644 --- a/src/PlaylistQueue.cxx +++ b/src/PlaylistQueue.cxx @@ -52,7 +52,7 @@ playlist_load_into_queue(const char *uri, struct playlist_provider *source, if (song == NULL) continue; - result = playlist_append_song(dest, pc, song, NULL); + result = dest->AppendSong(*pc, song); song_free(song); if (result != PLAYLIST_RESULT_SUCCESS) { g_free(base_uri); |