vlc | branch: master | KO Myung-Hun <[email protected]> | Sun Jul 1 15:53:00 2018 +0900| [d488ce150d390c231b83490786da74220d321775] | committer: Thomas Guillem
skins2(os2): fix compilation Signed-off-by: Thomas Guillem <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d488ce150d390c231b83490786da74220d321775 --- modules/gui/skins2/os2/os2_window.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gui/skins2/os2/os2_window.hpp b/modules/gui/skins2/os2/os2_window.hpp index 9c21243507..7f26847aa1 100644 --- a/modules/gui/skins2/os2/os2_window.hpp +++ b/modules/gui/skins2/os2/os2_window.hpp @@ -64,11 +64,11 @@ public: void setOSHandle( vout_window_t *pWnd ) const { pWnd->type = VOUT_WINDOW_TYPE_HWND; pWnd->info.has_double_click = true; - pWnd->handle.hwnd = getHandle(); + pWnd->handle.hwnd = ( void * )getHandle(); } /// reparent the window - void reparent( void* OSHandle, int x, int y, int w, int h ); + void reparent( OSWindow *parent, int x, int y, int w, int h ); /// invalidate a window surface bool invalidateRect( int x, int y, int w, int h ) const; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
