summaryrefslogtreecommitdiff
path: root/src/tests/eo/children/children_main.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/tests/eo/children/children_main.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/tests/eo/children/children_main.c')
-rw-r--r--src/tests/eo/children/children_main.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tests/eo/children/children_main.c b/src/tests/eo/children/children_main.c
index 0034bd9840..e9292f2c90 100644
--- a/src/tests/eo/children/children_main.c
+++ b/src/tests/eo/children/children_main.c
@@ -20,13 +20,13 @@ main(int argc, char *argv[])
Eina_Iterator *iter = NULL;
void *chld;
- eo_init();
+ efl_object_init();
- Eo *parent = eo_add(SIMPLE_CLASS, NULL);
+ Eo *parent = efl_add(SIMPLE_CLASS, NULL);
- Eo *child1 = eo_add(SIMPLE_CLASS, parent);
- Eo *child2 = eo_add(SIMPLE_CLASS, parent);
- Eo *child3 = eo_add(SIMPLE_CLASS, parent);
+ Eo *child1 = efl_add(SIMPLE_CLASS, parent);
+ Eo *child2 = efl_add(SIMPLE_CLASS, parent);
+ Eo *child3 = efl_add(SIMPLE_CLASS, parent);
iter = efl_children_iterator_new(parent);
fail_if(!iter);
@@ -67,8 +67,8 @@ main(int argc, char *argv[])
iter = efl_children_iterator_new(parent);
fail_if(iter);
- eo_unref(parent);
+ efl_unref(parent);
- eo_shutdown();
+ efl_object_shutdown();
return 0;
}