diff --git a/src/lib/efl/interfaces/efl_animator.eo b/src/lib/efl/interfaces/efl_animator.eo index ac7e86ba28..ca969d99fe 100644 --- a/src/lib/efl/interfaces/efl_animator.eo +++ b/src/lib/efl/interfaces/efl_animator.eo @@ -1,6 +1,6 @@ import eina_types; -struct Efl.Event.Animator_Tick { +struct Efl.Event_Animator_Tick { [[EFL event animator tick data structure]] update_area: Eina.Rect; [[Area of the canvas that will be pushed to screen.]] } @@ -10,6 +10,6 @@ interface Efl.Animator { eo_prefix: efl_animator; event_prefix: efl; events { - animator,tick: Efl.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]] + animator,tick: Efl.Event_Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]] } }