diff options
author | Courtney Cavin <ccavin@gmail.com> | 2009-07-28 18:07:01 -0400 |
---|---|---|
committer | Courtney Cavin <ccavin@gmail.com> | 2009-07-28 18:07:01 -0400 |
commit | 7f865f722c55dc7a2a27c7869030accc8ab9beb2 (patch) | |
tree | 688db79eb5c049c62f20fffbd7b3f5f035e24192 /src/playlist_edit.c | |
parent | 614a01184577eda5f24517bec9609f0ea6d7e97b (diff) | |
download | mpd-7f865f722c55dc7a2a27c7869030accc8ab9beb2.tar.gz mpd-7f865f722c55dc7a2a27c7869030accc8ab9beb2.tar.xz mpd-7f865f722c55dc7a2a27c7869030accc8ab9beb2.zip |
playlist: CamelCaseIsBad
Renamed all playlist functions to non-CamelCase.
Diffstat (limited to 'src/playlist_edit.c')
-rw-r--r-- | src/playlist_edit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/playlist_edit.c b/src/playlist_edit.c index 6ab27a93b..7b390aa17 100644 --- a/src/playlist_edit.c +++ b/src/playlist_edit.c @@ -44,7 +44,7 @@ static void playlist_increment_version(struct playlist *playlist) void playlist_clear(struct playlist *playlist) { - stopPlaylist(playlist); + playlist_stop(playlist); /* make sure there are no references to allocated songs anymore */ @@ -238,11 +238,11 @@ playlist_delete(struct playlist *playlist, unsigned song) if (playlist->current >= 0 && !paused) /* play the song after the deleted one */ - playPlaylistOrderNumber(playlist, playlist->current); + playlist_play_order(playlist, playlist->current); else /* no songs left to play, stop playback completely */ - stopPlaylist(playlist); + playlist_stop(playlist); queued = NULL; } else if (playlist->current == (int)songOrder) |