summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_win_standard.c
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/efl_ui_win_standard.c
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/efl_ui_win_standard.c')
-rw-r--r--src/lib/elementary/efl_ui_win_standard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_win_standard.c b/src/lib/elementary/efl_ui_win_standard.c
index ed9b01da03..5189233427 100644
--- a/src/lib/elementary/efl_ui_win_standard.c
+++ b/src/lib/elementary/efl_ui_win_standard.c
@@ -15,11 +15,11 @@
EOLIAN static Eo *
_efl_ui_win_standard_efl_object_finalize(Eo *obj, void *pd EINA_UNUSED)
{
- obj = efl_finalize(eo_super(obj, MY_CLASS));
+ obj = efl_finalize(efl_super(obj, MY_CLASS));
if (!obj)
return NULL;
- Evas_Object *bg = eo_add(ELM_BG_CLASS, obj);
+ Evas_Object *bg = efl_add(ELM_BG_CLASS, obj);
if (!bg)
{
ERR("Cannot create background.");