felipealmeida pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=11e27d00f96b0755df4d69f58c88415646850c00

commit 11e27d00f96b0755df4d69f58c88415646850c00
Author: Vitor Sousa <vitorsousasi...@gmail.com>
Date:   Thu Jan 21 19:37:05 2016 -0200

    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.
---
 src/lib/elm_genlist.eo   | 10 +++++-----
 src/lib/elm_view_list.eo |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/lib/elm_genlist.eo b/src/lib/elm_genlist.eo
index cad2689..ddee611 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 a5806ef..86f0d19 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.]]
              }
         }

-- 


Reply via email to