ector: remove deprecated _efl_refplace and _efl_xrefplace.

Summary: Depends on D7275

Reviewers: Hermet, smohanty

Reviewed By: Hermet

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7276
This commit is contained in:
Cedric BAIL 2018-11-16 12:20:53 +09:00 committed by Hermet Park
parent fccce08947
commit 73f3e66f58
1 changed files with 0 additions and 18 deletions

View File

@ -42,24 +42,6 @@ extern int _ector_log_dom_global;
/* The following macro are internal to Ector only at this stage */
static inline Eo *
_efl_refplace(Eo **d, const Eo *s)
{
Eo *tmp = *d;
*d = efl_ref(s);
if (tmp) efl_unref(tmp);
return *d;
}
static inline Eo *
_efl_xrefplace(Eo **d, Eo *s, const Eo *ref_obj)
{
Eo *tmp = *d;
*d = efl_xref(s, ref_obj);
if (tmp) efl_xunref(tmp, ref_obj);
return *d;
}
typedef struct _Ector_Renderer_Data Ector_Renderer_Data;
typedef struct _Ector_Renderer_Gradient_Data Ector_Renderer_Gradient_Data;
typedef struct _Ector_Renderer_Gradient_Linear_Data Ector_Renderer_Gradient_Linear_Data;