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/PlaylistSave.cxx | |
parent | 400ff1c81253d29b127834c0b5367e83bbb3430c (diff) | |
download | mpd-52638c68f51209dc6c5a966feeadffc5b922f919.tar.gz mpd-52638c68f51209dc6c5a966feeadffc5b922f919.tar.xz mpd-52638c68f51209dc6c5a966feeadffc5b922f919.zip |
Playlist: convert functions to methods
Diffstat (limited to '')
-rw-r--r-- | src/PlaylistSave.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PlaylistSave.cxx b/src/PlaylistSave.cxx index 4d537accf..e3b952280 100644 --- a/src/PlaylistSave.cxx +++ b/src/PlaylistSave.cxx @@ -132,8 +132,7 @@ playlist_load_spl(struct playlist *playlist, struct player_control *pc, for (unsigned i = start_index; i < end_index; ++i) { const auto &uri_utf8 = contents[i]; - if ((playlist_append_uri(playlist, pc, uri_utf8.c_str(), - nullptr)) != PLAYLIST_RESULT_SUCCESS) { + if ((playlist->AppendURI(*pc, uri_utf8.c_str())) != PLAYLIST_RESULT_SUCCESS) { /* for windows compatibility, convert slashes */ char *temp2 = g_strdup(uri_utf8.c_str()); char *p = temp2; @@ -142,9 +141,10 @@ playlist_load_spl(struct playlist *playlist, struct player_control *pc, *p = '/'; p++; } - if ((playlist_append_uri(playlist, pc, temp2, NULL)) != PLAYLIST_RESULT_SUCCESS) { + + if (playlist->AppendURI(*pc, temp2) != PLAYLIST_RESULT_SUCCESS) g_warning("can't add file \"%s\"", temp2); - } + g_free(temp2); } } |