summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sousa <vitorsousasilva@gmail.com>2016-01-21 19:37:05 -0200
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2016-02-09 14:14:08 -0200
commit11e27d00f96b0755df4d69f58c88415646850c00 (patch)
tree2b435ed3419b8b1c089dbbf7ad70672129571a7c
parentf66f3215d714ee59aaa14f2f7554a94d610824da (diff)
downloadelementary-11e27d00f96b0755df4d69f58c88415646850c00.tar.gz
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.
-rw-r--r--src/lib/elm_genlist.eo10
-rw-r--r--src/lib/elm_view_list.eo2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/elm_genlist.eo b/src/lib/elm_genlist.eo
index cad2689c8..ddee6115b 100644
--- a/src/lib/elm_genlist.eo
+++ b/src/lib/elm_genlist.eo
@@ -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.]]
diff --git a/src/lib/elm_view_list.eo b/src/lib/elm_view_list.eo
index a5806efe5..86f0d19c9 100644
--- a/src/lib/elm_view_list.eo
+++ b/src/lib/elm_view_list.eo
@@ -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.]]
}
}