stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a01d3c26ce307fa6b647a30931bac50ab18699c3
commit a01d3c26ce307fa6b647a30931bac50ab18699c3 Author: Stefan Schmidt <[email protected]> Date: Thu Oct 27 00:02:01 2016 +0200 docs: gen{list,grid}: add docs for field type enums --- src/lib/elementary/elm_gengrid_item.eo | 8 ++++---- src/lib/elementary/elm_genlist_item.eo | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/lib/elementary/elm_gengrid_item.eo b/src/lib/elementary/elm_gengrid_item.eo index c740ccc..a2c2e94 100644 --- a/src/lib/elementary/elm_gengrid_item.eo +++ b/src/lib/elementary/elm_gengrid_item.eo @@ -16,10 +16,10 @@ enum Elm.Gengrid.Item.Field_Type [[Defines the type of the item part Used while updating item's parts. It can be used at updating multi fields.]] legacy: elm_gengrid_item_field; - all = 0, - text = (1 << 0), - content = (1 << 1), - state = (1 << 2) + all = 0, [[Type all]] + text = (1 << 0), [[Type text]] + content = (1 << 1), [[Type content]] + state = (1 << 2) [[Type state]] } diff --git a/src/lib/elementary/elm_genlist_item.eo b/src/lib/elementary/elm_genlist_item.eo index cdbdb2b..a593c00 100644 --- a/src/lib/elementary/elm_genlist_item.eo +++ b/src/lib/elementary/elm_genlist_item.eo @@ -9,7 +9,7 @@ enum Elm.Genlist.Item.Type none = 0, [[Simple item.]] tree = (1 << 0), [[This may be expanded and have child items.]] group = (1 << 1), [[An index item of a group of items. this item can have child items.]] - max = (1 << 2) + max = (1 << 2) [[Sentinel value to indicate last enum field during iteration]] } enum Elm.Genlist.Item.Field_Type @@ -19,10 +19,10 @@ enum Elm.Genlist.Item.Field_Type It can be used at updating multi fields. ]] legacy: elm_genlist_item_field; - all = 0, - text = (1 << 0), - content = (1 << 1), - state = (1 << 2) + all = 0, [[Type all]] + text = (1 << 0), [[Type text]] + content = (1 << 1), [[Type content]] + state = (1 << 2) [[Type state]] } enum Elm.Genlist.Item.Scrollto_Type --
