q66 pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=2a10d038b4ccef7d066e4c0a3778d64856d58f39
commit 2a10d038b4ccef7d066e4c0a3778d64856d58f39 Author: Daniel Kolesa <[email protected]> Date: Fri Jun 13 16:27:08 2014 +0100 atspi: more conformance issues --- src/lib/elm_interface_atspi_text.eo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/elm_interface_atspi_text.eo b/src/lib/elm_interface_atspi_text.eo index 885c84c..ace593f 100644 --- a/src/lib/elm_interface_atspi_text.eo +++ b/src/lib/elm_interface_atspi_text.eo @@ -67,10 +67,10 @@ interface Elm_Interface_Atspi_Text () return Eina_Bool; } keys { - @in const char *name @nonull; /*@ text attribute name */ - @inout int *start_offset @nonull; /*@ Position in text from which + const char *name @nonull; /*@ text attribute name */ + int *start_offset @nonull; /*@ Position in text from which given attribute is set. */ - @out int *end_offset; /*@ Position in text to which given attribute + int *end_offset; /*@ Position in text to which given attribute is set. */ } values { @@ -82,8 +82,8 @@ interface Elm_Interface_Atspi_Text () /* Gets list of all text attributes. */ } keys { - @inout int *start_offset @nonull; - @out int *end_offset; + int *start_offset @nonull; + int *end_offset; } values { @own Eina_List *attributes; --
