jpeg pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=634d309d8592eb85a3b0616f3462c89fd9350a86
commit 634d309d8592eb85a3b0616f3462c89fd9350a86 Author: Jean-Philippe Andre <[email protected]> Date: Mon May 12 15:44:18 2014 +0900 elm_map: Fix compilation warning/error ELM_WIDGET_DATA_GET_OR_RETURN can take a VA_ARGS if the function should return something. --- src/lib/elm_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_map.c b/src/lib/elm_map.c index abdc95e..5b32b55 100644 --- a/src/lib/elm_map.c +++ b/src/lib/elm_map.c @@ -3806,7 +3806,7 @@ _elm_map_pan_class_constructor(Eo_Class *klass) EOLIAN static Eina_Bool _elm_map_elm_widget_theme_apply(Eo *obj, Elm_Map_Data *sd EINA_UNUSED) { - ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd); + ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, EINA_FALSE); Eina_Bool int_ret = EINA_FALSE; eo_do_super(obj, MY_CLASS, int_ret = elm_obj_widget_theme_apply()); if (!int_ret) return EINA_FALSE; --
