From 9f8f6c2b535165336125491f55a2bfd107dcd52d Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Fri, 19 Jun 2015 15:01:31 +0100 Subject: [PATCH] efl_gfx_view: convert docs --- src/lib/efl/interfaces/efl_gfx_view.eo | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/lib/efl/interfaces/efl_gfx_view.eo b/src/lib/efl/interfaces/efl_gfx_view.eo index f9b5200819..a46c169ba4 100644 --- a/src/lib/efl/interfaces/efl_gfx_view.eo +++ b/src/lib/efl/interfaces/efl_gfx_view.eo @@ -3,24 +3,24 @@ interface Efl.Gfx.View { methods { @property size { set { - /*@ - Sets the size of the given image object. + [[Sets the size of the given image object. - This function will scale down or crop the image so that it is - treated as if it were at the given size. If the size given is - smaller than the image, it will be cropped. If the size given is - larger, then the image will be treated as if it were in the upper - left hand corner of a larger image that is otherwise transparent. */ + This function will scale down or crop the image so that it is + treated as if it were at the given size. If the size given is + smaller than the image, it will be cropped. If the size given is + larger, then the image will be treated as if it were in the upper + left hand corner of a larger image that is otherwise transparent. + ]] } get { - /*@ - Retrieves the size of the given image object. + [[Retrieves the size of the given image object. - See @ref evas_object_image_size_set() for more details. */ + See @evas_object_image_size_set for more details. + ]] } values { - w: int; /*@ The new width of the image. */ - h: int; /*@ The new height of the image. */ + w: int; [[The new width of the image.]] + h: int; [[The new height of the image.]] } } }