bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=10b631e7cb94b674446888aabaac09972af4382d
commit 10b631e7cb94b674446888aabaac09972af4382d Author: Marcel Hollerbach <[email protected]> Date: Wed Dec 4 10:51:04 2019 +0100 efl_canvas_animation_group: use @property instead of method this also refreshes the documentation of all this. Reviewed-by: Xavi Artigas <[email protected]> Differential Revision: https://phab.enlightenment.org/D10795 --- src/lib/evas/canvas/efl_canvas_animation_group.eo | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lib/evas/canvas/efl_canvas_animation_group.eo b/src/lib/evas/canvas/efl_canvas_animation_group.eo index 07daa8f554..7b9f19cf61 100644 --- a/src/lib/evas/canvas/efl_canvas_animation_group.eo +++ b/src/lib/evas/canvas/efl_canvas_animation_group.eo @@ -21,9 +21,12 @@ abstract @beta Efl.Canvas.Animation_Group extends Efl.Canvas.Animation @in animation: Efl.Canvas.Animation; [[Animation to remove from the group.]] } } - animations_get @const { - [[Gets the list of animations currently in the animation group.]] - return: iterator<Efl.Canvas.Animation> @move; [[List of animations in the group.]] + @property animations { + [[All animations that are currently part of this group.]] + get { } + values { + animations : iterator<Efl.Canvas.Animation> @move; [[The iterator carrying all animations of this group]] + } } } implements { --
