summaryrefslogtreecommitdiff
path: root/src/tests/eo/mixin/mixin_inherit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/eo/mixin/mixin_inherit.c')
-rw-r--r--src/tests/eo/mixin/mixin_inherit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tests/eo/mixin/mixin_inherit.c b/src/tests/eo/mixin/mixin_inherit.c
index e3936653ea..f363bf7774 100644
--- a/src/tests/eo/mixin/mixin_inherit.c
+++ b/src/tests/eo/mixin/mixin_inherit.c
@@ -13,25 +13,25 @@ static int
_a_get(Eo *obj, void *class_data EINA_UNUSED)
{
int ret = 0;
- ret = simple_a_get(eo_super(obj, MY_CLASS));
+ ret = simple_a_get(efl_super(obj, MY_CLASS));
printf("%s %d\n", __func__, ret);
return ret;
}
static Efl_Op_Description op_descs[] = {
- EO_OP_FUNC_OVERRIDE(simple_a_get, _a_get),
+ EFL_OBJECT_OP_FUNC_OVERRIDE(simple_a_get, _a_get),
};
static const Efl_Class_Description class_desc = {
EO_VERSION,
"Inherit",
- EO_CLASS_TYPE_REGULAR,
- EO_CLASS_DESCRIPTION_OPS(op_descs),
+ EFL_CLASS_TYPE_REGULAR,
+ EFL_CLASS_DESCRIPTION_OPS(op_descs),
NULL,
0,
NULL,
NULL
};
-EO_DEFINE_CLASS(inherit_class_get, &class_desc, SIMPLE_CLASS, MIXIN4_CLASS, NULL);
+EFL_DEFINE_CLASS(inherit_class_get, &class_desc, SIMPLE_CLASS, MIXIN4_CLASS, NULL);