diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2016-06-30 17:31:10 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2016-06-30 18:15:44 +0200 |
commit | 740e438627cc96a16a76a9ed22aff4cf6e8c37e5 (patch) | |
tree | c1269cf78dce33aece76f068e5dbde3bb9ab79f1 /src/lib | |
parent | 6248d706061434239e545c57019e0649b5824378 (diff) | |
download | efl-740e438627cc96a16a76a9ed22aff4cf6e8c37e5.tar.gz |
atspi_action: improve existing documentation
Fix typos, add parameter descriptions and consolidate property describtions.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elementary/elm_interface_atspi_action.eo | 14 |
1 files 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<Elm_Atspi_Action>; [[contains statically allocated strings]] |