tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6190f3cb46bd4278088d906a70c6c678ad82e18a
commit 6190f3cb46bd4278088d906a70c6c678ad82e18a Author: Tom Hacohen <[email protected]> Date: Mon Jun 1 14:51:59 2015 +0100 Edje object: Fix more Eolian warnings. --- src/lib/edje/edje_object.eo | 4 ++-- src/lib/evas/Evas_Common.h | 1 - src/lib/evas/canvas/evas_types.eot | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/lib/edje/edje_object.eo b/src/lib/edje/edje_object.eo index 3f76887..5eecbe4 100644 --- a/src/lib/edje/edje_object.eo +++ b/src/lib/edje/edje_object.eo @@ -250,7 +250,7 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File) values { text_class: const(char)*; /*@ The text class name */ font: const(char)*; /*@ Font name */ - size: Evas_Font_Size; /*@ Font Size */ + size: Evas.Font.Size; /*@ Font Size */ } } @property part_text_cursor_coord { @@ -2071,7 +2071,7 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File) params { @in text_class: const(char)*; /*@ The text class name */ @out font: const(char)*; /*@ Font name */ - @out size: Evas_Font_Size; /*@ Font Size */ + @out size: Evas.Font.Size; /*@ Font Size */ } } color_class_set { diff --git a/src/lib/evas/Evas_Common.h b/src/lib/evas/Evas_Common.h index 8c538ea..312c74e 100644 --- a/src/lib/evas/Evas_Common.h +++ b/src/lib/evas/Evas_Common.h @@ -299,7 +299,6 @@ typedef struct _Evas_Native_Surface Evas_Native_Surface; /**< A generic datatype */ typedef struct _Evas_Video_Surface Evas_Video_Surface; -typedef int Evas_Font_Size; /**< A type for font size */ typedef int Evas_Angle; /**< A type for angle */ struct _Evas_Coord_Rectangle /** A rectangle in Evas_Coord */ diff --git a/src/lib/evas/canvas/evas_types.eot b/src/lib/evas/canvas/evas_types.eot index fd64978..3e83a0b 100644 --- a/src/lib/evas/canvas/evas_types.eot +++ b/src/lib/evas/canvas/evas_types.eot @@ -97,6 +97,8 @@ enum Evas.Text_Style_Type { shadow_direction_right = (0x7 << 4) /**< shadow growing to the right */ } +type Evas.Font.Size: int; /**< A type for font size */ + struct Evas.Map; /*@ An opaque handle to map points * * @see evas_map_new() --
