diff options
Diffstat (limited to 'src/lib/elementary/efl_ui_layout.c')
-rw-r--r-- | src/lib/elementary/efl_ui_layout.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/elementary/efl_ui_layout.c b/src/lib/elementary/efl_ui_layout.c index d4d2323..1662adc 100644 --- a/src/lib/elementary/efl_ui_layout.c +++ b/src/lib/elementary/efl_ui_layout.c | |||
@@ -445,10 +445,10 @@ _efl_ui_layout_base_efl_ui_widget_disabled_set(Eo *obj, Efl_Ui_Layout_Data *_pd | |||
445 | _flush_mirrored_state(obj); | 445 | _flush_mirrored_state(obj); |
446 | } | 446 | } |
447 | 447 | ||
448 | static Efl_Ui_Theme_Apply_Error | 448 | static Eina_Error |
449 | _efl_ui_layout_theme_internal(Eo *obj, Efl_Ui_Layout_Data *sd) | 449 | _efl_ui_layout_theme_internal(Eo *obj, Efl_Ui_Layout_Data *sd) |
450 | { | 450 | { |
451 | Efl_Ui_Theme_Apply_Error ret = EFL_UI_THEME_APPLY_ERROR_GENERIC; | 451 | Eina_Error ret = EFL_UI_THEME_APPLY_ERROR_GENERIC; |
452 | 452 | ||
453 | ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, EFL_UI_THEME_APPLY_ERROR_GENERIC); | 453 | ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, EFL_UI_THEME_APPLY_ERROR_GENERIC); |
454 | 454 | ||
@@ -471,10 +471,10 @@ _efl_ui_layout_theme_internal(Eo *obj, Efl_Ui_Layout_Data *sd) | |||
471 | return ret; | 471 | return ret; |
472 | } | 472 | } |
473 | 473 | ||
474 | EOLIAN static Efl_Ui_Theme_Apply_Error | 474 | EOLIAN static Eina_Error |
475 | _efl_ui_layout_base_efl_ui_widget_theme_apply(Eo *obj, Efl_Ui_Layout_Data *sd) | 475 | _efl_ui_layout_base_efl_ui_widget_theme_apply(Eo *obj, Efl_Ui_Layout_Data *sd) |
476 | { | 476 | { |
477 | Efl_Ui_Theme_Apply_Error theme_apply_ret = EFL_UI_THEME_APPLY_ERROR_GENERIC; | 477 | Eina_Error theme_apply_ret = EFL_UI_THEME_APPLY_ERROR_GENERIC; |
478 | 478 | ||
479 | theme_apply_ret = efl_ui_widget_theme_apply(efl_super(obj, MY_CLASS)); | 479 | theme_apply_ret = efl_ui_widget_theme_apply(efl_super(obj, MY_CLASS)); |
480 | if (theme_apply_ret == EFL_UI_THEME_APPLY_ERROR_GENERIC) return EFL_UI_THEME_APPLY_ERROR_GENERIC; | 480 | if (theme_apply_ret == EFL_UI_THEME_APPLY_ERROR_GENERIC) return EFL_UI_THEME_APPLY_ERROR_GENERIC; |
@@ -920,7 +920,7 @@ _efl_ui_layout_base_theme_get(const Eo *obj, Efl_Ui_Layout_Data *sd EINA_UNUSED, | |||
920 | if (style) *style = elm_widget_theme_style_get(obj); | 920 | if (style) *style = elm_widget_theme_style_get(obj); |
921 | } | 921 | } |
922 | 922 | ||
923 | EOLIAN static Efl_Ui_Theme_Apply_Error | 923 | EOLIAN static Eina_Error |
924 | _efl_ui_layout_base_theme_set(Eo *obj, Efl_Ui_Layout_Data *sd, const char *klass, const char *group, const char *style) | 924 | _efl_ui_layout_base_theme_set(Eo *obj, Efl_Ui_Layout_Data *sd, const char *klass, const char *group, const char *style) |
925 | { | 925 | { |
926 | Eina_Bool changed = EINA_FALSE; | 926 | Eina_Bool changed = EINA_FALSE; |
@@ -2944,7 +2944,7 @@ elm_layout_data_get(const Evas_Object *obj, const char *key) | |||
2944 | EAPI Eina_Bool | 2944 | EAPI Eina_Bool |
2945 | elm_layout_theme_set(Evas_Object *obj, const char *klass, const char *group, const char *style) | 2945 | elm_layout_theme_set(Evas_Object *obj, const char *klass, const char *group, const char *style) |
2946 | { | 2946 | { |
2947 | Efl_Ui_Theme_Apply_Error theme_apply_ret; | 2947 | Eina_Error theme_apply_ret; |
2948 | 2948 | ||
2949 | theme_apply_ret = efl_ui_layout_theme_set(obj, klass, group, style); | 2949 | theme_apply_ret = efl_ui_layout_theme_set(obj, klass, group, style); |
2950 | return (theme_apply_ret != EFL_UI_THEME_APPLY_ERROR_GENERIC); | 2950 | return (theme_apply_ret != EFL_UI_THEME_APPLY_ERROR_GENERIC); |