[vlc-commits] npapi win32: added missing return;
Sergey Radionov
git at videolan.org
Wed Dec 21 12:54:11 CET 2011
npapi-vlc | branch: master | Sergey Radionov <RSATom at gmail.com> | Mon Dec 12 10:46:40 2011 +0700| [01053d05e5017f85525b21b9b2702dbb676a12a1] | committer: Jean-Baptiste Kempf
npapi win32: added missing return;
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> 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;
}
More information about the vlc-commits
mailing list