elm_glview.c: Set ret value false by default on smart_on_focus.

This commit is contained in:
Daniel Juyung Seo 2013-10-04 22:20:43 +09:00
parent 350081ff68
commit 29b113bae6
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ static void
_elm_glview_smart_on_focus(Eo *obj, void *_pd EINA_UNUSED, va_list *list)
{
Eina_Bool *ret = va_arg(*list, Eina_Bool *);
if (ret) *ret = EINA_FALSE;
Elm_Widget_Smart_Data *wd = eo_data_scope_get(obj, ELM_OBJ_WIDGET_CLASS);
Eina_Bool int_ret = EINA_FALSE;