void gui_playq_song_move_down ( void   ) 

Move the currently selected song one down.

Definition at line 423 of file gui_playq.c.

00424 {
00425         struct vfsref *vr_selected;
00426 
00427         playq_lock();
00428         if (!gui_vfslist_warn_isempty(win_playq)) {
00429                 vr_selected = gui_vfslist_getselected(win_playq);
00430                 if (vr_selected == vfs_list_last(&playq_list)) {
00431                         gui_msgbar_warn(_("The song is already at the "
00432                             "bottom of the playlist."));
00433                 } else {
00434                         playq_song_fast_move_down(vr_selected,
00435                             gui_vfslist_getselectedidx(win_playq));
00436                 }
00437         }
00438         playq_unlock();
00439 }

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