seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=406e27a98ccb4f6a904bdb62ea89a6305660c5f1
commit 406e27a98ccb4f6a904bdb62ea89a6305660c5f1 Author: Daniel Juyung Seo <[email protected]> Date: Sun Mar 23 02:05:16 2014 +0900 elm: Fixed shadow variable build warning. declaration of 'access' shadows a global declaration --- src/lib/elm_calendar.c | 4 ++-- src/lib/elm_clock.c | 4 ++-- src/lib/elm_colorselector.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/elm_calendar.c b/src/lib/elm_calendar.c index 4aec95e..1dea761 100644 --- a/src/lib/elm_calendar.c +++ b/src/lib/elm_calendar.c @@ -1146,9 +1146,9 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } EOLIAN static void -_elm_calendar_elm_widget_access(Eo *obj EINA_UNUSED, Elm_Calendar_Data *_pd EINA_UNUSED, Eina_Bool access) +_elm_calendar_elm_widget_access(Eo *obj EINA_UNUSED, Elm_Calendar_Data *_pd EINA_UNUSED, Eina_Bool acs) { - _elm_calendar_smart_focus_next_enable = access; + _elm_calendar_smart_focus_next_enable = acs; _access_obj_process(obj, _elm_calendar_smart_focus_next_enable); } diff --git a/src/lib/elm_clock.c b/src/lib/elm_clock.c index 6c9e55b..f59c2ef 100644 --- a/src/lib/elm_clock.c +++ b/src/lib/elm_clock.c @@ -780,9 +780,9 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } EOLIAN static void -_elm_clock_elm_widget_access(Eo *obj EINA_UNUSED, Elm_Clock_Data *_pd EINA_UNUSED, Eina_Bool access) +_elm_clock_elm_widget_access(Eo *obj EINA_UNUSED, Elm_Clock_Data *_pd EINA_UNUSED, Eina_Bool acs) { - _elm_clock_smart_focus_next_enable = access; + _elm_clock_smart_focus_next_enable = acs; _access_obj_process(obj, _elm_clock_smart_focus_next_enable); } diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c index bf7c38f..ec80ad0 100644 --- a/src/lib/elm_colorselector.c +++ b/src/lib/elm_colorselector.c @@ -1830,9 +1830,9 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } EOLIAN static void -_elm_colorselector_elm_widget_access(Eo *obj, Elm_Colorselector_Data *_pd EINA_UNUSED, Eina_Bool access) +_elm_colorselector_elm_widget_access(Eo *obj, Elm_Colorselector_Data *_pd EINA_UNUSED, Eina_Bool acs) { - _elm_colorselector_smart_focus_next_enable = access; + _elm_colorselector_smart_focus_next_enable = acs; _access_obj_process(obj, _elm_colorselector_smart_focus_next_enable); } --
