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