and fix ecore_evas...

SVN revision: 69528
This commit is contained in:
Vincent Torri 2012-03-20 22:57:05 +00:00
parent 162fa18190
commit dd9945b9ed
2 changed files with 8 additions and 8 deletions

View File

@ -717,7 +717,7 @@ _ecore_evas_win32_activate(Ecore_Evas *ee)
{
INF("ecore evas activate");
ecore_win32_window_focus_set((struct _Ecore_Win32_Window *)ee->prop.window);
ecore_win32_window_focus((struct _Ecore_Win32_Window *)ee->prop.window);
}
static void
@ -819,7 +819,7 @@ _ecore_evas_win32_cursor_set(Ecore_Evas *ee, Evas_Object *obj, int layer, int ho
static void
_ecore_evas_win32_focus_set(Ecore_Evas *ee, int on __UNUSED__)
{
ecore_win32_window_focus_set((struct _Ecore_Win32_Window *)ee->prop.window);
ecore_win32_window_focus((struct _Ecore_Win32_Window *)ee->prop.window);
}
static void

View File

@ -641,11 +641,11 @@ _ecore_evas_wince_cursor_set(Ecore_Evas *ee, Evas_Object *obj, int layer, int ho
#endif
}
/* static void */
/* _ecore_evas_wince_focus_set(Ecore_Evas *ee, int on __UNUSED__) */
/* { */
/* ecore_wince_window_focus_set(ee->prop.window); */
/* } */
static void
_ecore_evas_wince_focus_set(Ecore_Evas *ee, int on __UNUSED__)
{
ecore_wince_window_focus(ee->prop.window);
}
/* static void */
/* _ecore_evas_wince_iconified_set(Ecore_Evas *ee, int on) */
@ -760,7 +760,7 @@ static Ecore_Evas_Engine_Func _ecore_wince_engine_func =
NULL, //_ecore_evas_wince_size_step_set,
_ecore_evas_wince_cursor_set,
NULL, /* _ecore_evas_x_layer_set */
NULL, //_ecore_evas_wince_focus_set,
_ecore_evas_wince_focus_set,
NULL, //_ecore_evas_wince_iconified_set,
NULL, //_ecore_evas_wince_borderless_set,
NULL, /* _ecore_evas_x_override_set */