]> git.sesse.net Git - vlc/commitdiff
* Updates due to the new playlist core
authorDerk-Jan Hartman <hartman@videolan.org>
Sat, 21 Oct 2006 20:04:36 +0000 (20:04 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Sat, 21 Oct 2006 20:04:36 +0000 (20:04 +0000)
modules/gui/macosx/playlist.m
modules/gui/macosx/playlistinfo.m

index 5d79a030dd813f19c7f6ac337a679804fc1eb3f8..f0b374b47f6dac6d129cac52bdbe670a7288609d 100644 (file)
@@ -598,10 +598,10 @@ NSLog( @"expandable" );
         /* Since outlineView: willDisplayCell:... may call this function with
            p_items that don't exist anymore, first check if the item is still
            in the playlist. Any cleaner solution welcomed. */
-            for( i = 0; i < p_playlist->i_all_size; i++ )
+            for( i = 0; i < p_playlist->all_items.i_size; i++ )
             {
-                if( p_playlist->pp_all_items[i] == p_item ) break;
-                else if ( i == p_playlist->i_all_size - 1 )
+                if( ARRAY_VAL( p_playlist->all_items, i) == p_item ) break;
+                else if ( i == p_playlist->all_items.i_size - 1 )
                 {
                     vlc_object_release( p_playlist );
                     vlc_mutex_unlock( &p_playlist->object_lock );
index 79fa529e3d633f45f348f005f2d9274f19a99cb9..e1387e5dd92ae14e3bde81116b40ee2148c954d4 100644 (file)
     playlist_t * p_playlist = pl_Yield( p_intf );
     int i;
 
-    for( i = 0 ; i < p_playlist->i_all_size ; i++ )
+    for( i = 0 ; i < p_playlist->all_items.i_size ; i++ )
     {
-        if( p_playlist->pp_all_items[i] == p_local_item )
+        if( ARRAY_VAL( p_playlist->all_items, i ) == p_local_item )
         {
             vlc_object_release( p_playlist );
             return YES;