npapi-vlc | branch: master | Sergey Radionov <[email protected]> | Mon Dec 12 10:46:40 2011 +0700| [01053d05e5017f85525b21b9b2702dbb676a12a1] | committer: Jean-Baptiste Kempf
npapi win32: added missing return; Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=01053d05e5017f85525b21b9b2702dbb676a12a1 --- npapi/vlcplugin_win.cpp | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/npapi/vlcplugin_win.cpp b/npapi/vlcplugin_win.cpp index 3650924..7ac1829 100644 --- a/npapi/vlcplugin_win.cpp +++ b/npapi/vlcplugin_win.cpp @@ -163,6 +163,7 @@ bool VlcPluginWin::resize_windows() /* Redraw window */ InvalidateRect( drawable, NULL, TRUE ); UpdateWindow( drawable ); + return true; } bool VlcPluginWin::destroy_windows() @@ -173,4 +174,5 @@ bool VlcPluginWin::destroy_windows() setWindowProc(NULL); npwindow.window = NULL; + return true; } _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
