]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlist.m
Remove the deprecated vlc_atomic_t type.
[vlc] / modules / gui / macosx / playlist.m
index 134f5f48008f91ecd7d1c8ad51b0a1cde81bbd81..270b238974209ac5fb34a0d3e985b635809ebc46 100644 (file)
 
         if (p_item) {
             if (p_item->i_children == -1)
-                playlist_PreparseEnqueue(p_playlist, p_item->p_input);
+                libvlc_MetaRequest(p_intf->p_libvlc, p_item->p_input);
             else
                 msg_Dbg(p_intf, "preparsing nodes not implemented");
         }
         p_item = [[o_outline_view itemAtRow: indexes[i]] pointerValue];
 
         if (p_item && p_item->i_children == -1)
-            playlist_AskForArtEnqueue(p_playlist, p_item->p_input);
+            libvlc_ArtRequest(p_intf->p_libvlc, p_item->p_input);
     }
     [self playlistUpdated];
 }