From f052cd9d9ca537d98177caf68348ba239bfaf4cf Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 7 Aug 2015 14:26:50 +0100 Subject: [PATCH] Interface atspi action: migrate docs. --- .../src/lib/elm_interface_atspi_action.eo | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/legacy/elementary/src/lib/elm_interface_atspi_action.eo b/legacy/elementary/src/lib/elm_interface_atspi_action.eo index f5e5ab8d39..79f25b6de3 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_action.eo +++ b/legacy/elementary/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 *; /*@ contains statically allocated strings */ + actions: list *; [[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 {