ector: replace custom _efl_refplace by generic efl_replace.

Summary: Depends on D7274

Reviewers: Hermet, smohanty

Reviewed By: Hermet

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7275
This commit is contained in:
Cedric BAIL 2018-11-16 12:22:20 +09:00 committed by Hermet Park
parent 73f3e66f58
commit 3a223530d9
2 changed files with 4 additions and 4 deletions

View File

@ -133,7 +133,7 @@ _ector_renderer_mask_set(Eo *obj EINA_UNUSED,
Ector_Renderer_Data *pd,
Ector_Renderer *r)
{
_efl_refplace(&pd->mask, r);
efl_replace(&pd->mask, r);
}
static Ector_Renderer *

View File

@ -14,7 +14,7 @@ _ector_renderer_shape_fill_set(Eo *obj EINA_UNUSED,
Ector_Renderer_Shape_Data *pd,
const Ector_Renderer *r)
{
_efl_refplace(&pd->fill, r);
efl_replace(&pd->fill, r);
}
static const Ector_Renderer *
@ -29,7 +29,7 @@ _ector_renderer_shape_stroke_fill_set(Eo *obj EINA_UNUSED,
Ector_Renderer_Shape_Data *pd,
const Ector_Renderer *r)
{
_efl_refplace(&pd->stroke.fill, r);
efl_replace(&pd->stroke.fill, r);
}
static const Ector_Renderer *
@ -44,7 +44,7 @@ _ector_renderer_shape_stroke_marker_set(Eo *obj EINA_UNUSED,
Ector_Renderer_Shape_Data *pd,
const Ector_Renderer *r)
{
_efl_refplace(&pd->stroke.marker, r);
efl_replace(&pd->stroke.marker, r);
}
static const Ector_Renderer *