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:
![]() |
1.6.3