Changeset 37381b61344084f8c3be03104ad312f8b72b9fd8

Show
Ignore:
Timestamp:
23/12/07 19:20:06 (1 year ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1198434006 +0000
git-parent:

[7dfd1a1d1e0b512ec83466c1e85e36cba308037b]

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

macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it seems to be

Files:

Legend:

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

    rd0d0541 r37381b6  
    8383        case NSEnterCharacter: 
    8484        case NSCarriageReturnCharacter: 
    85             [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] 
    86                                                             playItem:self]; 
     85            [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] playItem:self]; 
    8786            break; 
    8887 
     
    202201    if( o_value == nil ) 
    203202    { 
     203        msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" ); 
    204204        o_value = [[NSValue valueWithPointer: p_return] retain]; 
    205         msg_Err( VLCIntf, "missing playlist item's pointer value" ); 
    206205    } 
    207206    return o_value;