Commit c5ba028a authored by Rafaël Carré's avatar Rafaël Carré

libvlc_media_list: remove unused feature

parent a415ad3b
...@@ -166,8 +166,6 @@ libvlc_media_list_new( libvlc_instance_t * p_inst ) ...@@ -166,8 +166,6 @@ libvlc_media_list_new( libvlc_instance_t * p_inst )
return NULL; return NULL;
} }
/* Code for that one should be handled in flat_media_list.c */
p_mlist->p_flat_mlist = NULL;
p_mlist->b_read_only = false; p_mlist->b_read_only = false;
libvlc_event_manager_register_event_type( p_mlist->p_event_manager, libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
......
...@@ -46,10 +46,6 @@ struct libvlc_media_list_t ...@@ -46,10 +46,6 @@ struct libvlc_media_list_t
* mlist comes, if any. */ * mlist comes, if any. */
vlc_array_t items; vlc_array_t items;
/* Other way to see that media list */
/* Used in flat_media_list.c */
libvlc_media_list_t * p_flat_mlist;
/* This indicates if this media list is read-only /* This indicates if this media list is read-only
* from a user point of view */ * from a user point of view */
bool b_read_only; bool b_read_only;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment