stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=86525c3dcfbfc4db7676ed51994fe6cbecc8036f
commit 86525c3dcfbfc4db7676ed51994fe6cbecc8036f Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Thu Jun 30 18:11:18 2016 +0200 atspi_image: improve existing documentation Mixin and property descriptions. --- src/lib/elementary/elm_interface_atspi_image.eo | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_image.eo b/src/lib/elementary/elm_interface_atspi_image.eo index 8002df9..d0e9f2f 100644 --- a/src/lib/elementary/elm_interface_atspi_image.eo +++ b/src/lib/elementary/elm_interface_atspi_image.eo @@ -1,11 +1,12 @@ mixin Elm.Interface.Atspi_Image () { + [[ATSPI image mixin]] eo_prefix: elm_interface_atspi_image; data: null; methods { @property extents @protected { + [[Gets an image extents.]] get @virtual_pure { - [[Gets an image extents.]] } keys { screen_coords: bool; @@ -18,21 +19,21 @@ mixin Elm.Interface.Atspi_Image () } } @property description @protected { + [[Textual description of image]] get { - [[Gets textual description of image]] } set { } values { - description: string; + description: string; [[Textual image description]] } } @property locale @protected { + [[Gets locale of the image description.]] get { - [[Gets locale of the image description.]] } values { - locale: string; + locale: string; [[Locale of description]] } } } --