stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=adca8765c07b10344f90b4008056ab1f9aee921c

commit adca8765c07b10344f90b4008056ab1f9aee921c
Author: Stefan Schmidt <[email protected]>
Date:   Fri Oct 21 16:12:57 2016 +0200

    docs: atspi: add missing docs for atspi action interface
---
 src/lib/elementary/elm_interface_atspi_action.eo | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/lib/elementary/elm_interface_atspi_action.eo 
b/src/lib/elementary/elm_interface_atspi_action.eo
index aca4c70..6279cae 100644
--- a/src/lib/elementary/elm_interface_atspi_action.eo
+++ b/src/lib/elementary/elm_interface_atspi_action.eo
@@ -12,7 +12,7 @@ mixin Elm.Interface.Atspi_Action ()
             name: string; [[Action name]]
          }
          keys {
-            id: int;
+            id: int; [[ID to get action name for]]
          }
       }
       @property localized_name @protected {
@@ -23,7 +23,7 @@ mixin Elm.Interface.Atspi_Action ()
             name: string; [[Localized name]]
          }
          keys {
-            id: int;
+            id: int; [[ID to get localized name for]]
          }
       }
       @property description @protected @virtual_pure {
@@ -31,13 +31,13 @@ mixin Elm.Interface.Atspi_Action ()
          get {
          }
          set {
-            return: bool;
+            return: bool; [[EINA_TRUE if description was set, else EINA_FALSE]]
          }
          values {
-            description: string;
+            description: string; [[Action description]]
          }
          keys {
-            id: int;
+            id: int; [[ID to set or get description for]]
          }
       }
       @property actions @protected {
@@ -45,20 +45,20 @@ mixin Elm.Interface.Atspi_Action ()
          get @virtual_pure {
          }
          values {
-            actions: list<Elm_Atspi_Action>; [[contains statically allocated 
strings]]
+            actions: list<Elm_Atspi_Action>; [[Contains statically allocated 
strings]]
          }
       }
       action_do @protected @virtual_pure {
          [[Performs action on given widget.]]
          params {
-            @in id: int;
+            @in id: int; [[ID for widget]]
          }
-         return: bool;
+         return: bool; [[EINA_TRUE if action was performed, else EINA_FALSE]]
       }
       keybinding_get @protected @virtual_pure {
          [[Gets configured keybinding for specific action and widget.]]
          params {
-            @in id: int;
+            @in id: int; [[ID for widget]]
          }
          return: own(char *) @warn_unused; [[Should be freed by the user.]]
       }

-- 


Reply via email to