npapi-vlc | branch: master | Daniel Amm <[email protected]> | Thu Jul 23 18:01:48 2015 +0200| [6770604329ced0c6ec5c2e2160cb80f939a2bc00] | committer: Hugo Beauzée-Luyssen
activex: fix pause method Signed-off-by: Hugo Beauzée-Luyssen <[email protected]> > http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=6770604329ced0c6ec5c2e2160cb80f939a2bc00 --- activex/vlccontrol2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activex/vlccontrol2.cpp b/activex/vlccontrol2.cpp index e4f683d..e85aec1 100644 --- a/activex/vlccontrol2.cpp +++ b/activex/vlccontrol2.cpp @@ -930,7 +930,7 @@ STDMETHODIMP VLCPlaylist::playItem(long item) STDMETHODIMP VLCPlaylist::pause() { - _plug->get_player().mlp().pause(); + _plug->get_player().get_mp().setPause( true ); return S_OK; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
