summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/evas_object_main.c
diff options
context:
space:
mode:
authorJaehyun Cho <jae_hyun.cho@samsung.com>2018-05-01 00:07:27 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2018-05-01 00:13:56 +0900
commite9b61a89698f20f6d32689a362e9a36d37a2e496 (patch)
treed43af64088f74bc4d4c1fe20620b935399c7f706 /src/lib/evas/canvas/evas_object_main.c
parent485fe6cd61f0a24a6dc62671ed122a7037e547af (diff)
downloadefl-e9b61a89698f20f6d32689a362e9a36d37a2e496.tar.gz
efl_canvas_object: Change name of animation event info
Change name of animation event info to synchronize with other event info names. Change data name in animation event info to synchronize with data type name, Efl.Event.Description.
Diffstat (limited to 'src/lib/evas/canvas/evas_object_main.c')
-rw-r--r--src/lib/evas/canvas/evas_object_main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/evas/canvas/evas_object_main.c b/src/lib/evas/canvas/evas_object_main.c
index 8f2edafafe..d4a2040e84 100644
--- a/src/lib/evas/canvas/evas_object_main.c
+++ b/src/lib/evas/canvas/evas_object_main.c
@@ -172,8 +172,8 @@ _anim_started_cb(void *data, const Efl_Event *ev)
{
const Efl_Event_Description *desc = data;
- Efl_Canvas_Object_Animation_Event_Info event;
- event.event_type = desc;
+ Efl_Canvas_Object_Animation_Event event;
+ event.event_desc = desc;
Eo *eo_obj = efl_animation_player_target_get(ev->object);
@@ -186,8 +186,8 @@ _anim_running_cb(void *data, const Efl_Event *ev)
{
const Efl_Event_Description *desc = data;
- Efl_Canvas_Object_Animation_Event_Info event;
- event.event_type = desc;
+ Efl_Canvas_Object_Animation_Event event;
+ event.event_desc = desc;
Eo *eo_obj = efl_animation_player_target_get(ev->object);
@@ -207,8 +207,8 @@ _anim_ended_cb(void *data, const Efl_Event *ev)
efl_event_callback_del(ev->object, EFL_ANIMATION_PLAYER_EVENT_ENDED,
_anim_ended_cb, desc);
- Efl_Canvas_Object_Animation_Event_Info event;
- event.event_type = desc;
+ Efl_Canvas_Object_Animation_Event event;
+ event.event_desc = desc;
Eo *eo_obj = efl_animation_player_target_get(ev->object);