rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=a5e9f1a1d1545cced09047efe7635f3212f30089

commit a5e9f1a1d1545cced09047efe7635f3212f30089
Author: Andrii Kroitor <an.kroi...@samsung.com>
Date:   Wed Apr 20 11:40:51 2016 +0300

    ewe: fix biuld after changes in eolian
---
 src/lib/ewe_combobox.eo | 40 +++++++++++++++++++++-------------------
 src/lib/ewe_ruler.eo    | 39 +++++++++++++++++++++------------------
 2 files changed, 42 insertions(+), 37 deletions(-)

diff --git a/src/lib/ewe_combobox.eo b/src/lib/ewe_combobox.eo
index 7f2573e..d08f88e 100644
--- a/src/lib/ewe_combobox.eo
+++ b/src/lib/ewe_combobox.eo
@@ -1,3 +1,5 @@
+type Ewe_Combobox_Item: __undefined_type;
+
 class Ewe_Combobox (Elm.Widget)
 {
    eo_prefix: ewe_obj_combobox;
@@ -11,7 +13,7 @@ class Ewe_Combobox (Elm.Widget)
             [[list of items on success, NULL otherwise]]
          }
          values {
-            items: const(Eina_List)*;
+            items: const(list<Ewe_Combobox_Item *>)*;
          }
       }
       item_add {
@@ -20,14 +22,14 @@ class Ewe_Combobox (Elm.Widget)
          ]]
          return: Ewe_Combobox_Item *; [[The new combobox item object or NULL 
if it cannot be created]]
          params {
-            @in title: Eina_Stringshare*; [[New items title]]
+            @in title: Eina.Stringshare*; [[New items title]]
          }
       }
       item_del {
          [[
           Delete combobox item.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
             @in item: Ewe_Combobox_Item*; [[The combobox item]]
          }
@@ -36,26 +38,26 @@ class Ewe_Combobox (Elm.Widget)
          [[
           Combobox items list free.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
-            @in empty: Eina_Bool; [[clear main part]]
+            @in empty: bool; [[clear main part]]
          }
       }
       item_title_set {
          [[
           Set title of the combobox item.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
             @in index: int; [[Combobox item index]]
-            @in title: Eina_Stringshare*; [[New items title]]
+            @in title: Eina.Stringshare*; [[New items title]]
          }
       }
       item_title_get {
          [[
           Get title of the combobox item.
          ]]
-         return: Eina_Stringshare *; [[items title on success, NULL otherwise]]
+         return: Eina.Stringshare *; [[items title on success, NULL otherwise]]
          params {
             @in index: const(int); [[Combobox item index]]
          }
@@ -64,7 +66,7 @@ class Ewe_Combobox (Elm.Widget)
         [[
          Set select to combobox item
         ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
             @in index: const(int); [[New selected item index]]
          }
@@ -79,44 +81,44 @@ class Ewe_Combobox (Elm.Widget)
         [[
          Get if combobox expanded
         ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
       }
       text_set {
          [[
           Set title of the combobox.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
-            @in title: Eina_Stringshare*; [[New items title]]
+            @in title: Eina.Stringshare*; [[New items title]]
          }
       }
       item_style_set {
          [[
           Set style of the combobox item.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
             @in item: Ewe_Combobox_Item*; [[The combobox item]]
-            @in style: Eina_Stringshare*; [[New items style]]
+            @in style: Eina.Stringshare*; [[New items style]]
          }
       }
       style_set {
          [[
           Set style of the combobox.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
-            @in style: Eina_Stringshare*; [[New combobox style]]
+            @in style: Eina.Stringshare*; [[New combobox style]]
          }
       }
       content_set {
          [[
           Set a content to a swallow part.
          ]]
-         return: Eina_Bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
+         return: bool; [[EINA_TRUE on success, EINA_FALSE otherwise]]
          params {
-            @in part: Eina_Stringshare*; [[Part name]]
-            @in content: Evas_Object*; [[A swallowed content]]
+            @in part: Eina.Stringshare*; [[Part name]]
+            @in content: Evas.Object*; [[A swallowed content]]
          }
       }
    }
diff --git a/src/lib/ewe_ruler.eo b/src/lib/ewe_ruler.eo
index 54d38ac..8fc724e 100644
--- a/src/lib/ewe_ruler.eo
+++ b/src/lib/ewe_ruler.eo
@@ -1,3 +1,6 @@
+type Ewe_Ruler_Scale: __undefined_type;
+type Ewe_Ruler_Marker: __undefined_type;
+
 class Ewe_Ruler (Elm.Widget)
 {
    eo_prefix: ewe_obj_ruler;
@@ -11,17 +14,17 @@ class Ewe_Ruler (Elm.Widget)
          set {
             [[Change the ruler's orientation to horizontal or vertical.
             ]]
-          return: Eina_Bool; [[EINA_TRUE if orientation was set or EINA_FALSE 
on failure.]]
+          return: bool; [[EINA_TRUE if orientation was set or EINA_FALSE on 
failure.]]
          }
          values {
-           horizontal: Eina_Bool;
+           horizontal: bool;
          }
       }
       @property step {
          set {
             [[Set step between marks of the ruler.
             ]]
-          return: Eina_Bool; [[EINA_TRUE if step was set or EINA_FALSE on 
failure.]]
+          return: bool; [[EINA_TRUE if step was set or EINA_FALSE on failure.]]
          }
          get {
             [[Get step between marks of the ruler.
@@ -42,7 +45,7 @@ class Ewe_Ruler (Elm.Widget)
          set {
             [[Set step between marks values of the scale
             ]]
-          return: Eina_Bool; [[ EINA_TRUE if step was set or EINA_FALSE on 
failure.]]
+          return: bool; [[ EINA_TRUE if step was set or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
@@ -59,7 +62,7 @@ class Ewe_Ruler (Elm.Widget)
          set {
             [[Change the ruler's "zero pointer" mark position
             ]]
-         return: Eina_Bool; [[EINA_TRUE if offset was set or EINA_FALSE on 
failure.]]
+         return: bool; [[EINA_TRUE if offset was set or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
@@ -78,7 +81,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Set format string for given scale
          ]]
-         return: Eina_Bool; [[EINA_TRUE if format was setted or EINA_FALSE on 
failure.]]
+         return: bool; [[EINA_TRUE if format was setted or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
@@ -97,7 +100,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Set style for given scale
          ]]
-         return: Eina_Bool; [[EINA_TRUE if style was setted or EINA_FALSE on 
failure.]]
+         return: bool; [[EINA_TRUE if style was setted or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
@@ -116,13 +119,13 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Change the scale's visibility
          ]]
-         return: Eina_Bool; [[EINA_TRUE if offset was set or EINA_FALSE on 
failure.]]
+         return: bool; [[EINA_TRUE if offset was set or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
          }
          values {
-           visible: Eina_Bool;
+           visible: bool;
          }
       }
       @property scale_middle_mark {
@@ -135,13 +138,13 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Change the scale middle mark visibility
          ]]
-         return: Eina_Bool; [[ EINA_TRUE if middle_mark was set or EINA_FALSE 
on failure.]]
+         return: bool; [[ EINA_TRUE if middle_mark was set or EINA_FALSE on 
failure.]]
          }
          keys {
            scale: Ewe_Ruler_Scale*;
          }
          values {
-           middle_mark: Eina_Bool;
+           middle_mark: bool;
          }
       }
       @property marker_relative {
@@ -154,7 +157,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Set marker to folow specified value on given scale
          ]]
-         return: Eina_Bool; [[ EINA_TRUE if position was set or EINA_FALSE on 
failure.]]
+         return: bool; [[ EINA_TRUE if position was set or EINA_FALSE on 
failure.]]
          }
          keys {
            marker: Ewe_Ruler_Marker*;
@@ -174,7 +177,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Set marker absolute posiiton
          ]]
-         return: Eina_Bool; [[ EINA_TRUE if position was set or EINA_FALSE on 
failure.]]
+         return: bool; [[ EINA_TRUE if position was set or EINA_FALSE on 
failure.]]
          }
          keys {
            marker: Ewe_Ruler_Marker*;
@@ -193,13 +196,13 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Change the marker's visibility
          ]]
-         return: Eina_Bool; [[EINA_TRUE if visibility was set or EINA_FALSE on 
failure.]]
+         return: bool; [[EINA_TRUE if visibility was set or EINA_FALSE on 
failure.]]
          }
          keys {
            marker: Ewe_Ruler_Marker*;
          }
          values {
-           visible: Eina_Bool;
+           visible: bool;
          }
       }
       @property marker_style {
@@ -212,7 +215,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Set style for given marker
          ]]
-         return: Eina_Bool; [[ EINA_TRUE if style was setted or EINA_FALSE on 
failure.]]
+         return: bool; [[ EINA_TRUE if style was setted or EINA_FALSE on 
failure.]]
          }
          keys {
            marker: Ewe_Ruler_Marker*;
@@ -234,7 +237,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Delete given scale from ruler.
          ]]
-         return: Eina_Bool; [[ EINA_TRUE on success, EIAN_FALSE on failure.]]
+         return: bool; [[ EINA_TRUE on success, EIAN_FALSE on failure.]]
          params {
             scale: Ewe_Ruler_Scale*;
          }
@@ -252,7 +255,7 @@ class Ewe_Ruler (Elm.Widget)
          [[
           Delete given marker from ruler.
          ]]
-         return: Eina_Bool; [[ EINA_TRUE on success, EIAN_FALSE on failure.]]
+         return: bool; [[ EINA_TRUE on success, EIAN_FALSE on failure.]]
          params {
             marker: Ewe_Ruler_Marker*;
          }

-- 


Reply via email to