diff options
author | Vitor Sousa <vitorsousasilva@gmail.com> | 2016-08-22 19:40:39 -0300 |
---|---|---|
committer | Vitor Sousa <vitorsousasilva@gmail.com> | 2016-08-26 15:45:07 -0300 |
commit | 8356b16a49d4f653d61940763eff947466b44e24 (patch) | |
tree | b5d8e533b3df4ad45f2ea97071b7a826ae5d04b5 /src/lib/evas/canvas/evas_vg_private.h | |
parent | 6b3ca899e8a60642466ddb6d7c7574b0c3ad9d9c (diff) |
Efl Object: remove legacy callback calls from event_callback_call
Efl.Object.event_callback_call no longer calls legacy smart callbacks;
calling only event callbacks registered with the given event description
pointer.
Create the method Efl.Object.event_callback_legacy_call to inherit the old
behavior from Efl.Object.event_callback_call, calling both Efl.Object events
and legacy smart callbacks.
Update all other files accordingly in order to still supply legacy
callbacks while they are necessary.
Diffstat (limited to 'src/lib/evas/canvas/evas_vg_private.h')
-rw-r--r-- | src/lib/evas/canvas/evas_vg_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_vg_private.h b/src/lib/evas/canvas/evas_vg_private.h index 8d85915fc1..6a6b3c5155 100644 --- a/src/lib/evas/canvas/evas_vg_private.h +++ b/src/lib/evas/canvas/evas_vg_private.h | |||
@@ -85,7 +85,7 @@ _evas_vg_render_pre(Efl_VG *child, Ector_Surface *s, Eina_Matrix3 *m) | |||
85 | static inline void | 85 | static inline void |
86 | _efl_vg_changed(Eo *obj) | 86 | _efl_vg_changed(Eo *obj) |
87 | { | 87 | { |
88 | efl_event_callback_call(obj, EFL_GFX_CHANGED, NULL); | 88 | efl_event_callback_legacy_call(obj, EFL_GFX_CHANGED, NULL); |
89 | } | 89 | } |
90 | 90 | ||
91 | static inline void * | 91 | static inline void * |