diff --git a/src/lib/ector/cairo/ector_renderer_cairo_shape.c b/src/lib/ector/cairo/ector_renderer_cairo_shape.c index e4706ea710..523bd7ed57 100644 --- a/src/lib/ector/cairo/ector_renderer_cairo_shape.c +++ b/src/lib/ector/cairo/ector_renderer_cairo_shape.c @@ -228,7 +228,7 @@ _ector_renderer_cairo_shape_ector_renderer_generic_base_bounds_get(Eo *obj, Ector_Renderer_Cairo_Base_Data *bd; // FIXME: It should be possible to actually ask cairo about that - eo_do(obj, efl_gfx_shape_bounding_box_get(r)); + eo_do(obj, efl_gfx_shape_bounds_get(r)); bd = eo_data_scope_get(obj, ECTOR_RENDERER_CAIRO_BASE_CLASS); r->x += bd->generic->origin.x; diff --git a/src/lib/efl/interfaces/efl_gfx_shape.c b/src/lib/efl/interfaces/efl_gfx_shape.c index 97a1e38e36..64700739bf 100644 --- a/src/lib/efl/interfaces/efl_gfx_shape.c +++ b/src/lib/efl/interfaces/efl_gfx_shape.c @@ -203,9 +203,9 @@ _efl_gfx_shape_path_length_get(Eo *obj EINA_UNUSED, Efl_Gfx_Shape_Data *pd, } void -_efl_gfx_shape_bounding_box_get(Eo *obj EINA_UNUSED, - Efl_Gfx_Shape_Data *pd, - Eina_Rectangle *r) +_efl_gfx_shape_bounds_get(Eo *obj EINA_UNUSED, + Efl_Gfx_Shape_Data *pd, + Eina_Rectangle *r) { double minx, miny, maxx, maxy; unsigned int i; diff --git a/src/lib/efl/interfaces/efl_gfx_shape.eo b/src/lib/efl/interfaces/efl_gfx_shape.eo index 9340fe0604..37d0abd3ec 100644 --- a/src/lib/efl/interfaces/efl_gfx_shape.eo +++ b/src/lib/efl/interfaces/efl_gfx_shape.eo @@ -189,7 +189,7 @@ mixin Efl.Gfx.Shape @in Eo *dup_from; /*@ Shape object from where data will be copied.*/ } } - bounding_box_get { + bounds_get { /*@ Compute and return the bounding box of the currently set path diff --git a/src/lib/evas/canvas/evas_vg_shape.c b/src/lib/evas/canvas/evas_vg_shape.c index 644f9e6002..7b7ec01f06 100644 --- a/src/lib/evas/canvas/evas_vg_shape.c +++ b/src/lib/evas/canvas/evas_vg_shape.c @@ -34,7 +34,7 @@ _efl_vg_shape_efl_vg_base_bounds_get(Eo *obj, Eina_Rectangle *r) { // FIXME: Use the renderer bounding box when it has been created instead of an estimation - eo_do(obj, efl_gfx_shape_bounding_box_get(r)); + eo_do(obj, efl_gfx_shape_bounds_get(r)); } static void