void playq_song_fast_move_down ( struct vfsref vr,
unsigned int  index 
)

Move the specified song one position down.

Definition at line 503 of file playq.c.

00504 {
00505         struct vfsref *nvr;
00506 
00507         /* Remove the item below */
00508         nvr = vfs_list_next(vr);
00509         gui_playq_notify_pre_removal(index + 1);
00510         vfs_list_remove(&playq_list, nvr);
00511 
00512         /* Add it above */
00513         vfs_list_insert_before(&playq_list, nvr, vr);
00514         gui_playq_notify_post_insertion(index);
00515         gui_playq_notify_done();
00516 
00517 }

Here is the call graph for this function:

Here is the caller graph for this function:

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