[774/906] win32: Fix some compiler errors/warnings

This commit is contained in:
Sebastian Dröge 2013-07-18 20:26:44 +02:00 committed by Matthew Waters
parent b26c4dbe4e
commit 3900c6750c

View file

@ -269,7 +269,7 @@ gst_gl_window_win32_set_window_handle (GstGLWindow * window, guintptr id)
window_win32 = GST_GL_WINDOW_WIN32 (window); window_win32 = GST_GL_WINDOW_WIN32 (window);
if (!window_win32->internal_win_id) { if (!window_win32->internal_win_id) {
window_win32->parent_win_id = id; window_win32->parent_win_id = (HWND) id;
return; return;
} }
@ -322,7 +322,7 @@ gst_gl_window_win32_set_window_handle (GstGLWindow * window, guintptr id)
SetWindowLongPtr (window_win32->internal_win_id, GWL_STYLE, SetWindowLongPtr (window_win32->internal_win_id, GWL_STYLE,
WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW); WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW);
} }
window_win32->parent_win_id = id; window_win32->parent_win_id = (HWND) id;
} }
/* Thread safe */ /* Thread safe */
@ -332,8 +332,7 @@ gst_gl_window_win32_draw (GstGLWindow * window, guint width, guint height)
GstGLWindowWin32 *window_win32 = GST_GL_WINDOW_WIN32 (window); GstGLWindowWin32 *window_win32 = GST_GL_WINDOW_WIN32 (window);
if (!window_win32->visible) { if (!window_win32->visible) {
HWND parent_id =; HWND parent_id = window_win32->parent_win_id;
window_win32->parent_win_id;
/* if no parent the real size has to be set now because this has not been done /* if no parent the real size has to be set now because this has not been done
* when at window creation */ * when at window creation */