summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-08-06 14:25:44 +0100
committerTom Hacohen <tom@stosb.com>2015-08-06 14:25:44 +0100
commitde2e30ad06264b1b593793253bbac0b4401cefce (patch)
tree6991b5db8b850a33ccd1fb898c7d05b8b17c35cc
parent81ef39c393ad07eafaaab6d1eeecf14c4e912b6d (diff)
downloadelementary-de2e30ad06264b1b593793253bbac0b4401cefce.tar.gz
Multibuttonentry item: Migrate docs to new eolian format.
-rw-r--r--src/lib/elm_multibuttonentry_item.eo37
1 files changed, 8 insertions, 29 deletions
diff --git a/src/lib/elm_multibuttonentry_item.eo b/src/lib/elm_multibuttonentry_item.eo
index ad496c1a8..abaf450a8 100644
--- a/src/lib/elm_multibuttonentry_item.eo
+++ b/src/lib/elm_multibuttonentry_item.eo
@@ -3,43 +3,22 @@ class Elm.Multibuttonentry_Item(Elm.Widget_Item)
eo_prefix: elm_obj_multibuttonentry_item;
methods {
@property selected {
+ [[Control the selected state of an item]]
get {
- /*@
- Get the selected state of an item
-
- @ingroup Multibuttonentry
- */
}
set {
- /*@
- Set the selected state of an item
-
- @ingroup Multibuttonentry
- */
}
values {
- selected: bool; /*@ EINA_TRUE if selected EINA_FALSE otherwise */
+ selected: bool; [[$true if selected $false otherwise]]
}
}
- prev_get @const {
- /*@
- Get the previous item in the multibuttonentry
-
- @return The item before the item @p it
-
- @ingroup Multibuttonentry
- */
- return: Elm_Object_Item *;
+ prev_get @const {
+ [[Get the previous item in the multibuttonentry]]
+ return: Elm_Object_Item *; [[The item before the item]]
}
- next_get @const {
- /*@
- Get the next item in the multibuttonentry
-
- @return The item after the item @p it
-
- @ingroup Multibuttonentry
- */
- return: Elm_Object_Item *;
+ next_get @const {
+ [[Get the next item in the multibuttonentry]]
+ return: Elm_Object_Item *; [[The item after the item]]
}
}
implements {