summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-08-07 14:26:50 +0100
committerTom Hacohen <tom@stosb.com>2015-08-07 14:31:03 +0100
commit62ddf3c6ec345cd69adbedbaba6fa1bfcc16abfd (patch)
treebaae993bac3c7027e7ed69f883783c9bb93f3ba7
parent0da82773de41332f875216897b71aeaaa5d9f39d (diff)
downloadelementary-62ddf3c6ec345cd69adbedbaba6fa1bfcc16abfd.tar.gz
Interface atspi action: migrate docs.
-rw-r--r--src/lib/elm_interface_atspi_action.eo19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/lib/elm_interface_atspi_action.eo b/src/lib/elm_interface_atspi_action.eo
index f5e5ab8d3..79f25b6de 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 {