From: RĂ©mi Duraffort Date: Sat, 8 Mar 2008 18:16:14 +0000 (+0100) Subject: Use PLAYLIST_PLAY instead of PLAYLIST_AUTOPLAY. X-Git-Tag: 0.9.0-test0~2238 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a418e6d37987a4f7508d0d3c945c5948e1af555f;p=vlc Use PLAYLIST_PLAY instead of PLAYLIST_AUTOPLAY. --- diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp index 40fce2fa4e..8deeca222e 100644 --- a/modules/gui/qt4/qt4.cpp +++ b/modules/gui/qt4/qt4.cpp @@ -347,7 +347,7 @@ static void Init( intf_thread_t *p_intf ) /* Start playing if needed */ if( !p_intf->pf_show_dialog && p_intf->b_play ) { - playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE ); + playlist_Control( THEPL, PLAYLIST_PLAY, VLC_FALSE ); } /* Explain to the core how to show a dialog :D */ diff --git a/modules/gui/wxwidgets/wxwidgets.cpp b/modules/gui/wxwidgets/wxwidgets.cpp index e671ee5597..591b54e76b 100644 --- a/modules/gui/wxwidgets/wxwidgets.cpp +++ b/modules/gui/wxwidgets/wxwidgets.cpp @@ -401,7 +401,7 @@ bool Instance::OnInit() FIND_ANYWHERE ); if( p_playlist ) { - playlist_Control( p_playlist, PLAYLIST_AUTOPLAY, VLC_FALSE ); + playlist_Control( p_playlist, PLAYLIST_PLAY, VLC_FALSE ); vlc_object_release( p_playlist ); } }