Ecore_Evas: fix compilation after the removal of ecore_win32_shape_set() API

SVN revision: 68923
This commit is contained in:
Vincent Torri 2012-03-07 10:39:30 +00:00
parent 06f5ecf546
commit b00a55e316
1 changed files with 0 additions and 6 deletions

View File

@ -879,18 +879,12 @@ _ecore_evas_win32_fullscreen_set(Ecore_Evas *ee, int on)
if (on != 0)
{
ecore_win32_window_shape_set((struct _Ecore_Win32_Window *)ee->prop.window,
0, 0, NULL);
ecore_win32_window_fullscreen_set((struct _Ecore_Win32_Window *)ee->prop.window,
on);
}
else
{
ecore_win32_window_fullscreen_set(window, on);
ecore_win32_window_shape_set(window,
window->shape.width,
window->shape.height,
window->shape.mask);
}
/* Nothing to be done for the GDI backend at the evas level */