From 740e438627cc96a16a76a9ed22aff4cf6e8c37e5 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 30 Jun 2016 17:31:10 +0200 Subject: [PATCH] atspi_action: improve existing documentation Fix typos, add parameter descriptions and consolidate property describtions. --- src/lib/elementary/elm_interface_atspi_action.eo | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_action.eo b/src/lib/elementary/elm_interface_atspi_action.eo index fb74388bdd..aca4c70c03 100644 --- a/src/lib/elementary/elm_interface_atspi_action.eo +++ b/src/lib/elementary/elm_interface_atspi_action.eo @@ -1,36 +1,36 @@ mixin Elm.Interface.Atspi_Action () { + [[ATSPI action mixin]] eo_prefix: elm_interface_atspi_action; data: null; methods { @property name @protected @virtual_pure { + [[Gets action name for given id]] get { - [[Gets action name for given id]] } values { - name: string; + name: string; [[Action name]] } keys { id: int; } } @property localized_name @protected { + [[Gets localized action name for given id]] get { - [[Gets localized action name for given id]] } values { - name: string; + name: string; [[Localized name]] } keys { id: int; } } @property description @protected @virtual_pure { + [[Action description for given id]] get { - [[Gets action description for given id]] } set { - [[Sets action description for given id]] return: bool; } values { @@ -41,8 +41,8 @@ mixin Elm.Interface.Atspi_Action () } } @property actions @protected { + [[Get list of available widget actions]] get @virtual_pure { - [[Get list of available widget actions]] } values { actions: list; [[contains statically allocated strings]]