From 3d63f96162d7ee9bc32d0a9a111d3b28dc726b79 Mon Sep 17 00:00:00 2001 From: kugel Date: Tue, 21 Sep 2010 22:55:24 +0000 Subject: [PATCH] Use convenience function. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28139 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist_viewer.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c index 59b05a231e..50238446d6 100644 --- a/apps/playlist_viewer.c +++ b/apps/playlist_viewer.c @@ -652,12 +652,9 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename) } /* Timeout so we can determine if play status has changed */ - button = get_action(CONTEXT_TREE,HZ/2); - bool res = gui_synclist_do_button(&playlist_lists, - &button, - LIST_WRAP_UNLESS_HELD); + bool res = list_do_action(CONTEXT_LIST, HZ/2, + &playlist_lists, &button, LIST_WRAP_UNLESS_HELD)) viewer.selected_track=gui_synclist_get_sel_pos(&playlist_lists); - if (res) { bool reload = playlist_buffer_needs_reload(&viewer.buffer, @@ -841,8 +838,8 @@ bool search_playlist(void) gui_synclist_draw(&playlist_lists); while (!exit) { - button = get_action(CONTEXT_LIST, HZ/4); - if (gui_synclist_do_button(&playlist_lists, &button, LIST_WRAP_UNLESS_HELD)) + if (list_do_action(CONTEXT_LIST, HZ/4, + &playlist_lists, &button, LIST_WRAP_UNLESS_HELD)) continue; switch (button) { -- 2.11.4.GIT