tasn pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=62ddf3c6ec345cd69adbedbaba6fa1bfcc16abfd
commit 62ddf3c6ec345cd69adbedbaba6fa1bfcc16abfd Author: Tom Hacohen <[email protected]> Date: Fri Aug 7 14:26:50 2015 +0100 Interface atspi action: migrate docs. --- src/lib/elm_interface_atspi_action.eo | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/lib/elm_interface_atspi_action.eo b/src/lib/elm_interface_atspi_action.eo index f5e5ab8..79f25b6 100644 --- a/src/lib/elm_interface_atspi_action.eo +++ b/src/lib/elm_interface_atspi_action.eo @@ -6,7 +6,7 @@ mixin Elm_Interface_Atspi_Action () methods { @property name @protected { get { - /*@ Gets action name for given id */ + [[Gets action name for given id]] } values { name: const(char)*; @@ -17,7 +17,7 @@ mixin Elm_Interface_Atspi_Action () } @property localized_name @protected { get { - /*@ Gets localized action name for given id */ + [[Gets localized action name for given id]] } values { name: const(char)*; @@ -28,10 +28,10 @@ mixin Elm_Interface_Atspi_Action () } @property description @protected { get { - /*@ Gets action description for given id */ + [[Gets action description for given id]] } set { - /*@ Sets action description for given id */ + [[Sets action description for given id]] return: bool; } values { @@ -43,26 +43,25 @@ mixin Elm_Interface_Atspi_Action () } @property actions @protected { get { - /*@ Get list of available widget actions */ + [[Get list of available widget actions]] } values { - actions: list<Elm_Atspi_Action> *; /*@ contains statically allocated strings */ + actions: list<Elm_Atspi_Action> *; [[contains statically allocated strings]] } } action_do @protected { - /*@ Performs action on given widget. */ + [[Performs action on given widget.]] params { @in id: int; } return: bool; } keybinding_get @protected { - /*@ Gets configured keybinding for specific action and widget. - returned pointer should be free by a user.*/ + [[Gets configured keybinding for specific action and widget.]] params { @in id: int; } - return: own(char *) @warn_unused; + return: own(char *) @warn_unused; [[Should be freed by the user.]] } } implements { --
