summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-08-07 14:29:11 +0100
committerTom Hacohen <tom@stosb.com>2015-08-07 14:31:03 +0100
commitefcbe16fbb76c6a09697a0e1bd335e9a0201c146 (patch)
tree26547206be5ed18a55296589117d21a9f562034d
parent48ef6853c06de9d5c5a9a428402726597e4a4570 (diff)
downloadelementary-efcbe16fbb76c6a09697a0e1bd335e9a0201c146.tar.gz
Interface atspi value: migrate docs.
-rw-r--r--src/lib/elm_interface_atspi_value.eo14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/elm_interface_atspi_value.eo b/src/lib/elm_interface_atspi_value.eo
index 9ac7ac0cc..2b4432a13 100644
--- a/src/lib/elm_interface_atspi_value.eo
+++ b/src/lib/elm_interface_atspi_value.eo
@@ -5,21 +5,19 @@ interface Elm_Interface_Atspi_Value ()
methods {
@property value_and_text @protected {
get {
- /*@ Gets value displayed by a accessible widget. */
+ [[Gets value displayed by a accessible widget.]]
}
set {
- return: bool; /*@ true if setting widgets value has
- successed, false otherwise. */
+ return: bool; [[true if setting widgets value has successed, false otherwise.]]
}
values {
- value: double; /*@ Value of widget casted to floating point number. */
- text: const(char)*; /*@ string describing value in given context
- eg. small, enough */
+ value: double; [[Value of widget casted to floating point number.]]
+ text: const(char)*; [[string describing value in given context eg. small, enough]]
}
}
@property range @protected {
get {
- /*@ Gets a range of all possible values and its description */
+ [[Gets a range of all possible values and its description]]
}
values {
lower_limit: double;
@@ -29,7 +27,7 @@ interface Elm_Interface_Atspi_Value ()
}
@property increment @protected {
get {
- /*@ Gets an minimal incrementation value */
+ [[Gets an minimal incrementation value]]
}
values {
increment: double;