diff options
author | Tom Hacohen <tom@stosb.com> | 2016-08-15 14:44:41 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-08-15 15:07:42 +0100 |
commit | e65aae994e72c1d3f8ac6b5360d3772f177b77ef (patch) | |
tree | 7ecaf136e45470635889191aded2b47057720a98 /src/lib/evas/canvas/evas_vg_private.h | |
parent | 35abb3c34d10a4826c98055fb85ecf93915e5ea8 (diff) |
Eo: Finish the renaming of Eo to the EFL.
This renames all the rest of the API to the EFL namespace except for
Eo_Event that will follow soon.
Obviously breaks both API and ABI.
Diffstat (limited to 'src/lib/evas/canvas/evas_vg_private.h')
-rw-r--r-- | src/lib/evas/canvas/evas_vg_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/canvas/evas_vg_private.h b/src/lib/evas/canvas/evas_vg_private.h index 87f327bcd2..8d85915fc1 100644 --- a/src/lib/evas/canvas/evas_vg_private.h +++ b/src/lib/evas/canvas/evas_vg_private.h | |||
@@ -75,7 +75,7 @@ _evas_vg_render_pre(Efl_VG *child, Ector_Surface *s, Eina_Matrix3 *m) | |||
75 | 75 | ||
76 | // FIXME: Prevent infinite loop | 76 | // FIXME: Prevent infinite loop |
77 | if (child) | 77 | if (child) |
78 | child_nd = eo_data_scope_get(child, EFL_VG_CLASS); | 78 | child_nd = efl_data_scope_get(child, EFL_VG_CLASS); |
79 | if (child_nd) | 79 | if (child_nd) |
80 | child_nd->render_pre(child, m, s, child_nd->data, child_nd); | 80 | child_nd->render_pre(child, m, s, child_nd->data, child_nd); |
81 | 81 | ||
@@ -102,7 +102,7 @@ _efl_vg_realloc(void *from, unsigned int sz) | |||
102 | static inline void | 102 | static inline void |
103 | _efl_vg_clean_object(Eo **obj) | 103 | _efl_vg_clean_object(Eo **obj) |
104 | { | 104 | { |
105 | if (*obj) eo_unref(*obj); | 105 | if (*obj) efl_unref(*obj); |
106 | *obj = NULL; | 106 | *obj = NULL; |
107 | } | 107 | } |
108 | 108 | ||