From: Daniel Juyung Seo Date: Thu, 8 Nov 2012 08:33:26 +0000 (+0000) Subject: elm access: Rename access hook name according to elm refactoring. X-Git-Tag: submit/efl/20131021.015827~1568 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fee1d515fcf9a6572560df092fa1fa3483cde18;p=platform%2Fupstream%2Felementary.git elm access: Rename access hook name according to elm refactoring. SVN revision: 78993 --- diff --git a/src/lib/elm_calendar.c b/src/lib/elm_calendar.c index 4db9bc8..e915a1f 100644 --- a/src/lib/elm_calendar.c +++ b/src/lib/elm_calendar.c @@ -962,7 +962,7 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_calendar_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_CALENDAR_CHECK(obj); ELM_CALENDAR_DATA_GET(obj, sd); @@ -995,7 +995,7 @@ _elm_calendar_smart_set_user(Elm_Calendar_Smart_Class *sc) if (_elm_config->access_mode != ELM_ACCESS_MODE_OFF) ELM_WIDGET_CLASS(sc)->focus_next = _elm_calendar_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_calendar_smart_access; } EAPI const Elm_Calendar_Smart_Class * diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c index 2f28062..343e60a 100644 --- a/src/lib/elm_colorselector.c +++ b/src/lib/elm_colorselector.c @@ -1708,7 +1708,7 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_colorselector_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_COLORSELECTOR_CHECK(obj); ELM_COLORSELECTOR_DATA_GET(obj, sd); @@ -1741,7 +1741,7 @@ _elm_colorselector_smart_set_user(Elm_Colorselector_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_colorselector_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_colorselector_smart_access; } EAPI const Elm_Colorselector_Smart_Class * diff --git a/src/lib/elm_diskselector.c b/src/lib/elm_diskselector.c index 3499997..b6719d4 100644 --- a/src/lib/elm_diskselector.c +++ b/src/lib/elm_diskselector.c @@ -1390,7 +1390,7 @@ _elm_diskselector_smart_member_add(Evas_Object *obj, } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_diskselector_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_DISKSELECTOR_DATA_GET(obj, sd); @@ -1420,7 +1420,7 @@ _elm_diskselector_smart_set_user(Elm_Diskselector_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_diskselector_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_diskselector_smart_access; } EAPI const Elm_Diskselector_Smart_Class * diff --git a/src/lib/elm_gengrid.c b/src/lib/elm_gengrid.c index bd12bb0..95555cb 100644 --- a/src/lib/elm_gengrid.c +++ b/src/lib/elm_gengrid.c @@ -2374,7 +2374,7 @@ _access_obj_process(Elm_Gengrid_Smart_Data * sd, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_gengrid_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_GENGRID_CHECK(obj); ELM_GENGRID_DATA_GET(obj, sd); @@ -2411,7 +2411,7 @@ _elm_gengrid_smart_set_user(Elm_Gengrid_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_gengrid_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_gengrid_smart_access; } EAPI const Elm_Gengrid_Smart_Class * diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 83f4dab..01c6710 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -4682,7 +4682,7 @@ _access_obj_process(Elm_Genlist_Smart_Data * sd, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_genlist_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_GENLIST_CHECK(obj); ELM_GENLIST_DATA_GET(obj, sd); @@ -4721,7 +4721,7 @@ _elm_genlist_smart_set_user(Elm_Genlist_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_genlist_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_genlist_smart_access; } EAPI const Elm_Genlist_Smart_Class * diff --git a/src/lib/elm_index.c b/src/lib/elm_index.c index e84f6f1..a7c64cd 100644 --- a/src/lib/elm_index.c +++ b/src/lib/elm_index.c @@ -855,7 +855,7 @@ _access_obj_process(Evas_Object *obj, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_index_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_INDEX_CHECK(obj); ELM_INDEX_DATA_GET(obj, sd); @@ -885,7 +885,7 @@ _elm_index_smart_set_user(Elm_Index_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_index_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_index_smart_access; } EAPI const Elm_Index_Smart_Class * diff --git a/src/lib/elm_segment_control.c b/src/lib/elm_segment_control.c index f4f9203..ab6ee10 100644 --- a/src/lib/elm_segment_control.c +++ b/src/lib/elm_segment_control.c @@ -642,7 +642,7 @@ _access_obj_process(Elm_Segment_Control_Smart_Data * sd, Eina_Bool is_access) } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_segment_control_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_SEGMENT_CONTROL_CHECK(obj); ELM_SEGMENT_CONTROL_DATA_GET(obj, sd); @@ -678,7 +678,7 @@ _elm_segment_control_smart_set_user(Elm_Segment_Control_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_segment_control_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_segment_control_smart_access; } EAPI const Elm_Segment_Control_Smart_Class * diff --git a/src/lib/elm_spinner.c b/src/lib/elm_spinner.c index ec6a134..dc2d0d0 100644 --- a/src/lib/elm_spinner.c +++ b/src/lib/elm_spinner.c @@ -659,7 +659,7 @@ _elm_spinner_smart_focus_next(const Evas_Object *obj, } static void -_access_hook(Evas_Object *obj, Eina_Bool is_access) +_elm_spinner_smart_access(Evas_Object *obj, Eina_Bool is_access) { ELM_SPINNER_CHECK(obj); ELM_SPINNER_DATA_GET(obj, sd); @@ -698,7 +698,7 @@ _elm_spinner_smart_set_user(Elm_Spinner_Smart_Class *sc) if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) ELM_WIDGET_CLASS(sc)->focus_next = _elm_spinner_smart_focus_next; - ELM_WIDGET_CLASS(sc)->access = _access_hook; + ELM_WIDGET_CLASS(sc)->access = _elm_spinner_smart_access; } EAPI const Elm_Spinner_Smart_Class *