diff options
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 | ||