]> git.sesse.net Git - vlc/commitdiff
playlist_Add() prototype changed
authorJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Feb 2007 09:04:25 +0000 (09:04 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Feb 2007 09:04:25 +0000 (09:04 +0000)
modules/gui/skins2/commands/cmd_add_item.cpp

index a208da0cf9441e46efe04d5fbd12b08d8255910d..5b9683576090458246e607bd5109d7d986ab1cc1 100644 (file)
@@ -38,12 +38,13 @@ void CmdAddItem::execute()
     {
         // Enqueue and play the item
         playlist_Add( pPlaylist, m_name.c_str(), NULL,
-                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, VLC_TRUE );
+                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, VLC_TRUE,
+                      VLC_FALSE );
     }
     else
     {
         // Enqueue the item only
         playlist_Add( pPlaylist, m_name.c_str(), NULL,
-                      PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE );
+                      PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE, VLC_FALSE );
     }
 }