elementary: use the Eolian name for Elm.Genlist.Item.Type in .eo files

Replace Elm_Genlist_Item_Type with Elm.Genlist.Item.Type in .eo files
to use the proper Eolian name of this enumeration.
This commit is contained in:
Vitor Sousa 2016-01-21 19:37:05 -02:00 committed by Felipe Magno de Almeida
parent a2f29b86c5
commit f8b5b375ea
2 changed files with 6 additions and 6 deletions

View File

@ -345,7 +345,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
@in data: const(void)*; [[The item data.]]
@in parent: Elm.Widget_Item * @nullable; [[The parent item, or $null if none.]]
@in before_it: Elm.Widget_Item *; [[The item to place this new one before.]]
@in type: Elm_Genlist_Item_Type; [[Item type.]]
@in type: Elm.Genlist.Item.Type; [[Item type.]]
@in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
@in func_data: const(void)* @optional; [[Data passed to $func above.]]
}
@ -373,7 +373,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
@in data: const(void)*; [[The item data.]]
@in parent: Elm.Widget_Item * @nullable; [[The parent item, or $null if none.]]
@in after_it: Elm.Widget_Item *; [[The item to place this new one after.]]
@in type: Elm_Genlist_Item_Type; [[Item type.]]
@in type: Elm.Genlist.Item.Type; [[Item type.]]
@in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
@in func_data: const(void)* @optional; [[Data passed to $func above.]]
}
@ -441,7 +441,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
@in itc: const(Elm.Genlist.Item.Class)*; [[The item class for the item.]]
@in data: const(void)*; [[The item data.]]
@in parent: Elm.Widget_Item * @nullable; [[The parent item, or $null if none.]]
@in type: Elm_Genlist_Item_Type; [[Item type.]]
@in type: Elm.Genlist.Item.Type; [[Item type.]]
@in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
@in func_data: const(void)* @optional; [[Data passed to $func above.]]
}
@ -463,7 +463,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
@in itc: const(Elm.Genlist.Item.Class)*; [[The item class for the item.]]
@in data: const(void)*; [[The item data.]]
@in parent: Elm.Widget_Item * @nullable; [[The parent item, or $null if none.]]
@in type: Elm_Genlist_Item_Type; [[Item type.]]
@in type: Elm.Genlist.Item.Type; [[Item type.]]
@in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
@in func_data: const(void)* @optional; [[Data passed to $func above.]]
}
@ -480,7 +480,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
@in itc: const(Elm.Genlist.Item.Class)*; [[The item class for the item.]]
@in data: const(void)*; [[The item data.]]
@in parent: Elm.Widget_Item * @nullable; [[The parent item, or $null if none.]]
@in type: Elm_Genlist_Item_Type; [[Item type.]]
@in type: Elm.Genlist.Item.Type; [[Item type.]]
@in comp: Eina_Compare_Cb; [[The function called for the sort.]]
@in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
@in func_data: const(void)* @optional; [[Data passed to $func above.]]

View File

@ -9,7 +9,7 @@ class Elm.View_List (Eo.Base)
]]
params {
@in genlist: Evas_Object*; [[Genlist object]]
@in item_type: Elm_Genlist_Item_Type; [[Item type]]
@in item_type: Elm.Genlist.Item.Type; [[Item type]]
@in item_style: const(char)*; [[The current item style name. $null would be default.]]
}
}