diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 11:19:50 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 11:19:50 +0000 |
| commit | 3e98eb2de0d533e401ad07ed5b0e13cd973a5af3 (patch) | |
| tree | 41614a1c6950bdf2496d65b5f620d9cafbd6d46b /apps/tagtree.c | |
| parent | 2521bf5d2675ddd8c07637d021198134a7e12445 (diff) | |
| download | rockbox-3e98eb2de0d533e401ad07ed5b0e13cd973a5af3.zip rockbox-3e98eb2de0d533e401ad07ed5b0e13cd973a5af3.tar.gz rockbox-3e98eb2de0d533e401ad07ed5b0e13cd973a5af3.tar.bz2 rockbox-3e98eb2de0d533e401ad07ed5b0e13cd973a5af3.tar.xz | |
Renamed remove_all_tracks to playlist_remove_all_tracks to make it consistent with the naming of the other functions in playlist.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17186 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.c')
| -rw-r--r-- | apps/tagtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c index faffb00..50921d0 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1585,7 +1585,7 @@ static bool insert_all_playlist(struct tree_context *c, int position, bool queue if (position == PLAYLIST_REPLACE) { - if (remove_all_tracks(NULL) == 0) + if (playlist_remove_all_tracks(NULL) == 0) position = PLAYLIST_INSERT_LAST; else return -1; } |