Commit 37381b61 authored by Felix Paul Kühne's avatar Felix Paul Kühne

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

parent 7dfd1a1d
......@@ -82,8 +82,7 @@
case NSEnterCharacter:
case NSCarriageReturnCharacter:
[(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist]
playItem:self];
[(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] playItem:self];
break;
default:
......@@ -201,8 +200,8 @@
if( o_value == nil )
{
msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" );
o_value = [[NSValue valueWithPointer: p_return] retain];
msg_Err( VLCIntf, "missing playlist item's pointer value" );
}
return o_value;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment