q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1745d0a994b2664361d08091ad6ed669d0cfa667
commit 1745d0a994b2664361d08091ad6ed669d0cfa667 Author: Daniel Kolesa <d.kol...@osg.samsung.com> Date: Tue Jun 16 15:31:02 2015 +0100 efl_gfx_gradient_radial: convert docs --- src/lib/efl/interfaces/efl_gfx_gradient_radial.eo | 34 ++++++++--------------- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/src/lib/efl/interfaces/efl_gfx_gradient_radial.eo b/src/lib/efl/interfaces/efl_gfx_gradient_radial.eo index 6ee12b4..b322be4 100644 --- a/src/lib/efl/interfaces/efl_gfx_gradient_radial.eo +++ b/src/lib/efl/interfaces/efl_gfx_gradient_radial.eo @@ -4,49 +4,37 @@ interface Efl.Gfx.Gradient.Radial (Efl.Gfx.Gradient.Base) methods { @property center { set { - /*@ - Sets the center of this radial gradient. - */ + [[Sets the center of this radial gradient.]] } get { - /*@ - Gets the center of this radial gradient. - */ + [[Gets the center of this radial gradient.]] } values { - x: double; /*@ x co-ordinate of center point */ - y: double; /*@ y co-ordinate of center point */ + x: double; [[x co-ordinate of center point]] + y: double; [[y co-ordinate of center point]] } } @property radius { set { - /*@ - Sets the center radius of this radial gradient. - */ + [[Sets the center radius of this radial gradient.]] } get { - /*@ - Gets the center radius of this radial gradient. - */ + [[Gets the center radius of this radial gradient.]] } values { - r: double; /*@ center radius */ + r: double; [[center radius]] } } @property focal { set { - /*@ - Sets the focal point of this radial gradient. - */ + [[Sets the focal point of this radial gradient.]] } get { - /*@ - Gets the focal point of this radial gradient. - */ + [[Gets the focal point of this radial gradient.]] } values { - x: double; /*@ x co-ordinate of focal point */ - y: double; /*@ y co-ordinate of focal point */ + x: double; [[x co-ordinate of focal point]] + y: double; [[y co-ordinate of focal point]] } } } --