stanluk pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=98e6530ff787d403eb369aae12cd6bf02da63869
commit 98e6530ff787d403eb369aae12cd6bf02da63869 Author: Lukasz Stanislawski <[email protected]> Date: Wed Nov 18 13:34:39 2015 +0100 atspi: unprotect subset of methods Unprotect methods which are ment to be a part of public API. This methods were initially unprotected, however it looks like during eo refactoring @protect tags were added by mistake. @fix --- src/lib/elm_interface_atspi_accessible.eo | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/elm_interface_atspi_accessible.eo b/src/lib/elm_interface_atspi_accessible.eo index 65485cd..e6a1411 100644 --- a/src/lib/elm_interface_atspi_accessible.eo +++ b/src/lib/elm_interface_atspi_accessible.eo @@ -12,7 +12,7 @@ mixin Elm_Interface_Atspi_Accessible () localized_name: const(char)*; } } - @property name @protected { + @property name { get { [[Gets an string describing ATSPI widget role name. Should be free by a user.]] } @@ -30,7 +30,7 @@ mixin Elm_Interface_Atspi_Accessible () relations: Elm_Atspi_Relation_Set; } } - @property role @protected { + @property role { get { [[Gets the role of the widget in ATSPI Accessibility domain.]] } @@ -72,7 +72,7 @@ mixin Elm_Interface_Atspi_Accessible () idx: int; } } - @property description @protected { + @property description { get { [[Gets widget contextual information.]] } @@ -83,7 +83,7 @@ mixin Elm_Interface_Atspi_Accessible () description: const(char)*; } } - @property parent @protected { + @property parent { get { [[Gets widget accessible parent.]] } @@ -123,7 +123,7 @@ mixin Elm_Interface_Atspi_Accessible () @in event_info: void*; [[Accessibility event details.]] } } - @property translation_domain @protected { + @property translation_domain { get { [[Gets the translation domain of "name" and "description" properties.]] @@ -147,7 +147,7 @@ mixin Elm_Interface_Atspi_Accessible () domain: const(char)*; [[ translation domain ]] } } - relationship_append @protected { + relationship_append { [[Defines the relationship between two accessible objects. Adds unique relation between source object and relation_object of a @@ -169,7 +169,7 @@ mixin Elm_Interface_Atspi_Accessible () @in relation_object: const(Elm_Interface_Atspi_Accessible)*; } } - relationship_remove @protected { + relationship_remove { [[Removes the relationship between two accessible objects. If relation_object is NULL function removes all relations @@ -180,7 +180,7 @@ mixin Elm_Interface_Atspi_Accessible () @in relation_object: const(Elm_Interface_Atspi_Accessible)*; } } - relationships_clear @protected { + relationships_clear { [[Removes all relationships in accessible object.]] } } --
