void playq_song_fast_move_up ( struct vfsref vr,
unsigned int  index 
)

Move the specified song one position up.

Definition at line 487 of file playq.c.

00488 {
00489         struct vfsref *pvr;
00490         
00491         /* Remove the item above */
00492         pvr = vfs_list_prev(vr);
00493         gui_playq_notify_pre_removal(index - 1);
00494         vfs_list_remove(&playq_list, pvr);
00495 
00496         /* Add it below */
00497         vfs_list_insert_after(&playq_list, pvr, vr);
00498         gui_playq_notify_post_insertion(index);
00499         gui_playq_notify_done();
00500 }

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:42 2010 for herrie by  doxygen 1.6.3