]> git.sesse.net Git - vlc/commitdiff
playlist_NodeAddInput() prototype changed, this commit fixes building of wxwidgets...
authorJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Feb 2007 09:09:34 +0000 (09:09 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Feb 2007 09:09:34 +0000 (09:09 +0000)
modules/gui/macosx/playlist.m
modules/gui/wxwidgets/dialogs/playlist.cpp

index c21d79d72e13d5d29146d9008ee2727cb834a2f5..f9176885b06a2af9c9bb7562c964d9f8f8b8ddb0 100644 (file)
@@ -1053,7 +1053,7 @@ NSLog( @"expandable" );
        playlist_NodeAddInput( p_playlist, p_input, p_node,
                                       PLAYLIST_INSERT,
                                       i_position == -1 ?
-                                      PLAYLIST_END : i_position + i_item );
+                                      PLAYLIST_END : i_position + i_item, VLC_FALSE );
 
 
         if( i_item == 0 && !b_enqueue )
index 249b51b807a6c42f40387f2fb4f6c1cb772f4ae2..9780f1b4367c21290eed0c09b9148188724febbb 100644 (file)
@@ -1316,7 +1316,7 @@ bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y,
         input_item_t *p_input = input_ItemNew( p->p_playlist,
                                               psz_utf8, psz_utf8 );
         playlist_NodeAddInput( p->p_playlist, p_input,
-                               p_dest, PLAYLIST_PREPARSE, i_pos );
+                               p_dest, PLAYLIST_PREPARSE, i_pos, VLC_FALSE );
         wxDnDLocaleFree( psz_utf8 );
     }