From: Daniel Kolesa Date: Fri, 13 Jun 2014 15:27:08 +0000 (+0100) Subject: atspi: more conformance issues X-Git-Tag: upstream/1.20.0~7116^2~14^2~2413 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=763019c9d62da15f6036de14c1dc56fcde9adac5;p=platform%2Fupstream%2Fefl.git atspi: more conformance issues --- diff --git a/legacy/elementary/src/lib/elm_interface_atspi_text.eo b/legacy/elementary/src/lib/elm_interface_atspi_text.eo index 885c84c..ace593f 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_text.eo +++ b/legacy/elementary/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;