Changeset 03c546c175cbe5b1636ac581478b4a5fd969fc93

Show
Ignore:
Timestamp:
03/04/06 12:53:03 (3 years ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1141473183 +0000
git-parent:

[22073fe6c9d9e1d2c037bcb175d8f73c5a0f7b0f]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1141473183 +0000
Message:

* fix the table on the second tab and added an extra check to prevent a crash in rare situations

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/macosx/playlistinfo.m

    rc7b3731 r03c546c  
    142142- (void)initPanel:(id)sender 
    143143{ 
     144    /* check whether our item is valid, because we would crash if not */ 
     145    if(! [self isItemInPlaylist: p_item] ) 
     146        return; 
     147 
    144148    char *psz_temp; 
    145149    vlc_mutex_lock( &p_item->input.lock ); 
     
    186190    [[VLCInfoTreeItem rootItem] refresh]; 
    187191    [o_outline_view reloadData]; 
    188      
     192 
    189193    [self updateStatistics: nil]; 
    190194