void gui_playq_song_move_up ( void   ) 

Move the currently selected song one up.

Definition at line 404 of file gui_playq.c.

00405 {
00406         struct vfsref *vr_selected;
00407 
00408         playq_lock();
00409         if (!gui_vfslist_warn_isempty(win_playq)) {
00410                 vr_selected = gui_vfslist_getselected(win_playq);
00411                 if (vr_selected == vfs_list_first(&playq_list)) {
00412                         gui_msgbar_warn(_("The song is already at the "
00413                             "top of the playlist."));
00414                 } else {
00415                         playq_song_fast_move_up(vr_selected,
00416                             gui_vfslist_getselectedidx(win_playq));
00417                 }
00418         }
00419         playq_unlock();
00420 }

Here is the call graph for this function:

 All Data Structures Files Functions Variables Defines
Generated on Mon Mar 15 04:45:32 2010 for herrie by  doxygen 1.6.3