void gui_playq_song_move_tail ( void   ) 

Move the currently selected song to the bottom of the playlist.

Definition at line 461 of file gui_playq.c.

00462 {
00463         struct vfsref *vr_selected;
00464 
00465         playq_lock();
00466         if (!gui_vfslist_warn_isempty(win_playq)) {
00467                 vr_selected = gui_vfslist_getselected(win_playq);
00468                 if (vr_selected == vfs_list_last(&playq_list)) {
00469                         gui_msgbar_warn(_("The song is already at the "
00470                             "bottom of the playlist."));
00471                 } else {
00472                         playq_song_fast_move_tail(vr_selected,
00473                             gui_vfslist_getselectedidx(win_playq));
00474                 }
00475         }
00476         playq_unlock();
00477 }

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