summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_widget_panel.h
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-08-15 14:44:41 +0100
committerTom Hacohen <tom@stosb.com>2016-08-15 15:07:42 +0100
commite65aae994e72c1d3f8ac6b5360d3772f177b77ef (patch)
tree7ecaf136e45470635889191aded2b47057720a98 /src/lib/elementary/elm_widget_panel.h
parent35abb3c34d10a4826c98055fb85ecf93915e5ea8 (diff)
downloadefl-e65aae994e72c1d3f8ac6b5360d3772f177b77ef.tar.gz
Eo: Finish the renaming of Eo to the EFL.
This renames all the rest of the API to the EFL namespace except for Eo_Event that will follow soon. Obviously breaks both API and ABI.
Diffstat (limited to 'src/lib/elementary/elm_widget_panel.h')
-rw-r--r--src/lib/elementary/elm_widget_panel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_widget_panel.h b/src/lib/elementary/elm_widget_panel.h
index 1072408a27..a558335e0f 100644
--- a/src/lib/elementary/elm_widget_panel.h
+++ b/src/lib/elementary/elm_widget_panel.h
@@ -52,7 +52,7 @@ struct _Elm_Panel_Data
*/
#define ELM_PANEL_DATA_GET(o, sd) \
- Elm_Panel_Data * sd = eo_data_scope_get(o, ELM_PANEL_CLASS)
+ Elm_Panel_Data * sd = efl_data_scope_get(o, ELM_PANEL_CLASS)
#define ELM_PANEL_DATA_GET_OR_RETURN(o, ptr) \
ELM_PANEL_DATA_GET(o, ptr); \
@@ -73,7 +73,7 @@ struct _Elm_Panel_Data
}
#define ELM_PANEL_CHECK(obj) \
- if (EINA_UNLIKELY(!eo_isa((obj), ELM_PANEL_CLASS))) \
+ if (EINA_UNLIKELY(!efl_isa((obj), ELM_PANEL_CLASS))) \
return
#endif