]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlist.m
playlist_CreateNode(): add an argument to specify an input_item_t to be linked with...
[vlc] / modules / gui / macosx / playlist.m
index ac9239b5d89f4eefc77380a7d18fdf9742821598..e0e6c22c2df22e7a9aae6808abe0728b177cd964 100644 (file)
 
     if( psz_name != NULL && psz_name != "" )
         p_item = playlist_NodeCreate( p_playlist, psz_name,
-                                            p_playlist->p_local_category, 0 );
+                                      p_playlist->p_local_category, 0, NULL );
     else if(! config_GetInt( p_playlist, "interact" ) )
     {
         /* in case that the interaction is disabled, just give it a bogus name */
         p_item = playlist_NodeCreate( p_playlist, _("Empty Folder"),
-                                            p_playlist->p_local_category, 0 );
+                                      p_playlist->p_local_category, 0, NULL );
     }
 
     if(! p_item )