Changeset a418e6d37987a4f7508d0d3c945c5948e1af555f

Show
Ignore:
Timestamp:
08/03/08 19:16:14 (9 months ago)
Author:
Rémi Duraffort <ivoire@via.ecp.fr>
git-committer:
Rémi Duraffort <ivoire@via.ecp.fr> 1205000174 +0100
git-parent:

[438d9dee9b3d7d1623e64c1dd73d4dc96068d180]

git-author:
Rémi Duraffort <ivoire@via.ecp.fr> 1205000174 +0100
Message:

Use PLAYLIST_PLAY instead of PLAYLIST_AUTOPLAY.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/qt4.cpp

    ra701afa ra418e6d  
    348348    if( !p_intf->pf_show_dialog && p_intf->b_play ) 
    349349    { 
    350         playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE ); 
     350        playlist_Control( THEPL, PLAYLIST_PLAY, VLC_FALSE ); 
    351351    } 
    352352 
  • modules/gui/wxwidgets/wxwidgets.cpp

    r99fab90 ra418e6d  
    402402        if( p_playlist ) 
    403403        { 
    404             playlist_Control( p_playlist, PLAYLIST_AUTOPLAY, VLC_FALSE ); 
     404            playlist_Control( p_playlist, PLAYLIST_PLAY, VLC_FALSE ); 
    405405            vlc_object_release( p_playlist ); 
    406406        }