stefan pushed a commit to branch master.

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

commit e8c197763ff63be0e2c22e64dea9a48c4cfea29b
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Fri Oct 21 17:32:00 2016 +0200

    docs: atspi: add missing docs for atspi selection interface
---
 .../elementary/elm_interface_atspi_selection.eo    | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/lib/elementary/elm_interface_atspi_selection.eo 
b/src/lib/elementary/elm_interface_atspi_selection.eo
index d4f0d41..13a7a9c 100644
--- a/src/lib/elementary/elm_interface_atspi_selection.eo
+++ b/src/lib/elementary/elm_interface_atspi_selection.eo
@@ -5,53 +5,53 @@ interface Elm.Interface.Atspi.Selection ()
       @property selected_children_count @protected {
          get {
             [[Gets the number of currently selected children]]
-            return: int;
+            return: int; [[Number of currently selected children]]
          }
       }
       @property selected_child @protected {
          [[Gets child for given child index]]
          get {
-            return: Efl.Object;
+            return: Efl.Object; [[Child object]]
          }
          keys {
-            selected_child_index: int; [[index of selected child]]
+            selected_child_index: int; [[Index of child]]
          }
       }
       child_select @protected {
          [[Adds selection for given child index]]
          params {
-            @in child_index: int;
+            @in child_index: int; [[Index of child]]
          }
-         return: bool;
+         return: bool; [[$true if selection was added, $false otherwise]]
       }
       selected_child_deselect @protected {
          [[Removes selection for given child index]]
          params {
-            @in child_index: int;
+            @in child_index: int; [[Index of child]]
          }
-         return: bool;
+         return: bool; [[$true if selection was removed, $false otherwise]]
       }
       is_child_selected @protected {
          [[Determines if child specified by index is selected]]
          params {
-            @in child_index: int;
+            @in child_index: int; [[Index of child]]
          }
-         return: bool;
+         return: bool; [[$true if child is selected, $false otherwise]]
       }
       all_children_select @protected {
          [[Adds selection for all children]]
-         return: bool;
+         return: bool; [[$true if selection was added to all children, $false 
otherwise]]
       }
       clear @protected {
          [[Clears the current selection]]
-         return: bool;
+         return: bool; [[$true if selection was cleared, $false otherwise]]
       }
       child_deselect @protected {
          [[Removes selection for given child index]]
          params {
-            @in child_index: int;
+            @in child_index: int; [[Index of child]]
          }
-         return: bool;
+         return: bool; [[$true if selection was removed, $false otherwise]]
       }
    }
    events {

-- 


Reply via email to