davemds pushed a commit to branch master.

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

commit c23a61a49caebca1244fad484cae403bf7a0a0fd
Author: Dave Andreoli <d...@gurumeditation.it>
Date:   Wed Apr 13 20:12:18 2016 +0200

    eo: adjust direction of parameters
    
    They are OUT params in real
    
    Side note: the doc for this function miss the x parameter in the generated 
.eo.h file
    ...if someone want to look at the doc generation code.
---
 src/lib/elementary/elm_widget.eo | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lib/elementary/elm_widget.eo b/src/lib/elementary/elm_widget.eo
index 505feb8..72c41c1 100644
--- a/src/lib/elementary/elm_widget.eo
+++ b/src/lib/elementary/elm_widget.eo
@@ -520,10 +520,10 @@ abstract Elm.Widget (Evas.Object_Smart, 
Elm.Interface_Atspi_Accessible, Elm.Inte
       focus_highlight_geometry_get @const {
          [[Get the focus highlight geometry of widget.]]
          params {
-            @in x: Evas.Coord *;
-            @in y: Evas.Coord *;
-            @in w: Evas.Coord *;
-            @in h: Evas.Coord *;
+            @out x: Evas.Coord;
+            @out y: Evas.Coord;
+            @out w: Evas.Coord;
+            @out h: Evas.Coord;
          }
       }
       activate {

-- 


Reply via email to