Commit 253da208 authored by Jean-Paul Saman's avatar Jean-Paul Saman

playlist_NodeAddInput() prototype changed, this commit fixes building of wxwidgets and MacOS X

parent dde93e93
...@@ -1053,7 +1053,7 @@ NSLog( @"expandable" ); ...@@ -1053,7 +1053,7 @@ NSLog( @"expandable" );
playlist_NodeAddInput( p_playlist, p_input, p_node, playlist_NodeAddInput( p_playlist, p_input, p_node,
PLAYLIST_INSERT, PLAYLIST_INSERT,
i_position == -1 ? i_position == -1 ?
PLAYLIST_END : i_position + i_item ); PLAYLIST_END : i_position + i_item, VLC_FALSE );
if( i_item == 0 && !b_enqueue ) if( i_item == 0 && !b_enqueue )
......
...@@ -1316,7 +1316,7 @@ bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y, ...@@ -1316,7 +1316,7 @@ bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y,
input_item_t *p_input = input_ItemNew( p->p_playlist, input_item_t *p_input = input_ItemNew( p->p_playlist,
psz_utf8, psz_utf8 ); psz_utf8, psz_utf8 );
playlist_NodeAddInput( p->p_playlist, p_input, playlist_NodeAddInput( p->p_playlist, p_input,
p_dest, PLAYLIST_PREPARSE, i_pos ); p_dest, PLAYLIST_PREPARSE, i_pos, VLC_FALSE );
wxDnDLocaleFree( psz_utf8 ); wxDnDLocaleFree( psz_utf8 );
} }
......
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