Commit eba7ee48 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: work-around a deprecated method and ask the playlist properly for its size

parent afead23d
...@@ -1574,10 +1574,12 @@ static void manage_cleanup( void * args ) ...@@ -1574,10 +1574,12 @@ static void manage_cleanup( void * args )
playlist_t * p_playlist = pl_Hold( p_intf ); playlist_t * p_playlist = pl_Hold( p_intf );
/* TODO: fix i_size use */ PL_LOCK;
b_plmul = p_playlist->items.i_size > 1; b_plmul = playlist_CurrentSize( p_playlist ) > 1;
PL_UNLOCK;
p_input = playlist_CurrentInput( p_playlist ); p_input = playlist_CurrentInput( p_playlist );
bool b_buffering = NO; bool b_buffering = NO;
if( ( b_input = ( p_input != NULL ) ) ) if( ( b_input = ( p_input != NULL ) ) )
...@@ -2500,13 +2502,11 @@ end: ...@@ -2500,13 +2502,11 @@ end:
[o_msg_lock lock]; [o_msg_lock lock];
if( [o_msg_arr count] + 2 > 400 ) if( [o_msg_arr count] + 2 > 600 )
{ {
NSUInteger rid[] = { 0, 1 }; [o_msg_arr removeObjectAtIndex: 0];
/* FIXME: THIS METHOD WILL BE DEPRECATED */ [o_msg_arr removeObjectAtIndex: 1];
[o_msg_arr removeObjectsFromIndices: (NSUInteger *)&rid }
numIndices: sizeof(rid)/sizeof(rid[0])];
}
o_attr = [NSDictionary dictionaryWithObject: o_gray o_attr = [NSDictionary dictionaryWithObject: o_gray
forKey: NSForegroundColorAttributeName]; forKey: NSForegroundColorAttributeName];
......
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