diff --git a/legacy/eobj/examples/composite_objects/comp.c b/legacy/eobj/examples/composite_objects/comp.c index 15366cac99..d5bebb16ae 100644 --- a/legacy/eobj/examples/composite_objects/comp.c +++ b/legacy/eobj/examples/composite_objects/comp.c @@ -15,7 +15,7 @@ _a_get(Eobj *obj, void *class_data __UNUSED__, va_list *list) { int *a; a = va_arg(*list, int *); - eobj_super_do(obj, SIMPLE_A_GET(a)); + eobj_do_super(obj, SIMPLE_A_GET(a)); } static void diff --git a/legacy/eobj/examples/evas/elw_button.c b/legacy/eobj/examples/evas/elw_button.c index 6f5dfaf974..3ed3679644 100644 --- a/legacy/eobj/examples/evas/elw_button.c +++ b/legacy/eobj/examples/evas/elw_button.c @@ -26,7 +26,7 @@ _position_set(Eobj *obj, void *class_data __UNUSED__, va_list *list) x = va_arg(*list, Evas_Coord); y = va_arg(*list, Evas_Coord); printf("But set position %d,%d\n", x, y); - eobj_super_do(obj, EVAS_OBJ_POSITION_SET(x, y)); + eobj_do_super(obj, EVAS_OBJ_POSITION_SET(x, y)); } static void diff --git a/legacy/eobj/examples/function_overrides/inherit2.c b/legacy/eobj/examples/function_overrides/inherit2.c index d698e6b799..6713eb05ab 100644 --- a/legacy/eobj/examples/function_overrides/inherit2.c +++ b/legacy/eobj/examples/function_overrides/inherit2.c @@ -19,14 +19,14 @@ _a_set(Eobj *obj, void *class_data __UNUSED__, va_list *list) a = va_arg(*list, int); printf("%s %d\n", eobj_class_name_get(_my_class), a); eobj_do(obj, SIMPLE_A_PRINT()); - eobj_super_do(obj, SIMPLE_A_SET(a + 1)); + eobj_do_super(obj, SIMPLE_A_SET(a + 1)); } static void _print(Eobj *obj, void *class_data __UNUSED__, va_list *list __UNUSED__) { printf("Hey\n"); - fail_if(eobj_super_do(obj, INHERIT2_PRINT())); + fail_if(eobj_do_super(obj, INHERIT2_PRINT())); } static void diff --git a/legacy/eobj/examples/function_overrides/inherit3.c b/legacy/eobj/examples/function_overrides/inherit3.c index ed5e5382a5..21db48a44d 100644 --- a/legacy/eobj/examples/function_overrides/inherit3.c +++ b/legacy/eobj/examples/function_overrides/inherit3.c @@ -14,7 +14,7 @@ _a_set(Eobj *obj, void *class_data __UNUSED__, va_list *list) int a; a = va_arg(*list, int); printf("%s %d\n", eobj_class_name_get(_my_class), a); - eobj_super_do(obj, SIMPLE_A_SET(a + 1)); + eobj_do_super(obj, SIMPLE_A_SET(a + 1)); } static void diff --git a/legacy/eobj/lib/Eobj.h b/legacy/eobj/lib/Eobj.h index 8e107fb1b2..87e96cf7d5 100644 --- a/legacy/eobj/lib/Eobj.h +++ b/legacy/eobj/lib/Eobj.h @@ -299,7 +299,7 @@ EAPI Eina_Bool eobj_do_internal(Eobj *obj, ...); * * @see #eobj_do */ -EAPI Eina_Bool eobj_super_do(Eobj *obj, Eobj_Op op, ...); +EAPI Eina_Bool eobj_do_super(Eobj *obj, Eobj_Op op, ...); /** * @brief Gets the class of the object. diff --git a/legacy/eobj/lib/eobj.c b/legacy/eobj/lib/eobj.c index f2ad301817..3b0c8a6fc5 100644 --- a/legacy/eobj/lib/eobj.c +++ b/legacy/eobj/lib/eobj.c @@ -397,7 +397,7 @@ eobj_do_internal(Eobj *obj, ...) } EAPI Eina_Bool -eobj_super_do(Eobj *obj, Eobj_Op op, ...) +eobj_do_super(Eobj *obj, Eobj_Op op, ...) { const Eobj_Class *obj_klass; Eina_Bool ret = EINA_TRUE;