]> git.sesse.net Git - vlc/commitdiff
* There is no reason not to allow to open the information panel on nodes
authorBenjamin Pracht <bigben@videolan.org>
Tue, 21 Mar 2006 22:08:41 +0000 (22:08 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Tue, 21 Mar 2006 22:08:41 +0000 (22:08 +0000)
* We now have an (ugly) way to rename nodes

modules/gui/macosx/playlistinfo.m

index 5230a845938320abff99c24193d946a51fe0ad69..85836ddc23397d55173b1fad7429336d41af171d 100644 (file)
@@ -43,6 +43,7 @@
     if( self != nil )
     {
         p_item = NULL;
+        o_statUpdateTimer = nil;
     }
     return( self );
 }
     /* check whether our item is valid, because we would crash if not */
     if(! [self isItemInPlaylist: p_item] )
         return;
-
     char *psz_temp;
     vlc_mutex_lock( &p_item->input.lock );
 
     if( [self isItemInPlaylist: p_item] )
     {
         /* we can only do that if there's a valid input around */
-        
+
         vlc_mutex_lock( &p_item->input.p_stats->lock );
 
         /* input */
 
     for( i = 0 ; i < p_playlist->i_size ; i++ )
     {
-        if( p_playlist->pp_items[i] == p_local_item )
+        if( p_playlist->pp_all_items[i] == p_local_item )
         {
             vlc_object_release( p_playlist );
             return YES;