stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=72dbf4a60aab857be424764978de932a0f1329d0
commit 72dbf4a60aab857be424764978de932a0f1329d0 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Thu Oct 27 16:49:05 2016 +0200 docs: efl: document missing structs --- src/lib/efl/interfaces/efl_animator.eo | 1 + src/lib/efl/interfaces/efl_model.eo | 1 + 2 files changed, 2 insertions(+) diff --git a/src/lib/efl/interfaces/efl_animator.eo b/src/lib/efl/interfaces/efl_animator.eo index f451f8a..4eea0af 100644 --- a/src/lib/efl/interfaces/efl_animator.eo +++ b/src/lib/efl/interfaces/efl_animator.eo @@ -1,6 +1,7 @@ import eina_types; struct Efl.Event.Animator_Tick { + [[EFL event animator tick data structure]] update_area: Eina.Rectangle; [[Area of the canvas that will be pushed to screen.]] } diff --git a/src/lib/efl/interfaces/efl_model.eo b/src/lib/efl/interfaces/efl_model.eo index 688e927..546e690 100644 --- a/src/lib/efl/interfaces/efl_model.eo +++ b/src/lib/efl/interfaces/efl_model.eo @@ -1,4 +1,5 @@ struct Efl.Model.Property_Event { + [[EFL model property event data structure]] changed_properties: array<string>; [[List of changed properties]] invalidated_properties: array<string>; [[Removed properties identified by name]] } --