From: Tom Hacohen Date: Tue, 19 Apr 2016 15:23:39 +0000 (+0100) Subject: Elm atspi text: Fix eo type errors. X-Git-Tag: upstream/1.20.0~6740^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f021a858ad937ecf4775b1a4a575081ce240d85a;p=platform%2Fupstream%2Fefl.git Elm atspi text: Fix eo type errors. --- diff --git a/src/lib/elementary/elm_interface_atspi_text.eo b/src/lib/elementary/elm_interface_atspi_text.eo index 249664d..f058273 100644 --- a/src/lib/elementary/elm_interface_atspi_text.eo +++ b/src/lib/elementary/elm_interface_atspi_text.eo @@ -1,3 +1,5 @@ +import eina_types; + enum Elm.Atspi_Text.Granularity { char, @@ -32,9 +34,9 @@ struct Elm.Atspi_Text.Range struct Elm.Atspi_Text.Change_Info { content: const(char)*; - inserted: Eina.Bool; - pos: size_t; - len: size_t; + inserted: bool; + pos: size; + len: size; } interface Elm.Interface_Atspi_Text () @@ -50,7 +52,7 @@ interface Elm.Interface_Atspi_Text () offset: int; [[Position in text.]] } values { - character: Eina_Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]] + character: Eina.Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]] } } @property string @protected { @@ -131,7 +133,7 @@ interface Elm.Interface_Atspi_Text () screen_coords: bool; } values { - rect: Eina_Rectangle; + rect: Eina.Rectangle; } } @property character_count @protected { @@ -158,7 +160,7 @@ interface Elm.Interface_Atspi_Text () } keys { screen_coords: bool; - rect: Eina_Rectangle; + rect: Eina.Rectangle; xclip: Elm.Atspi_Text.Clip_Type; yclip: Elm.Atspi_Text.Clip_Type; } @@ -176,7 +178,7 @@ interface Elm.Interface_Atspi_Text () end_offset: int; } values { - rect: Eina_Rectangle; + rect: Eina.Rectangle; } } @property selections_count @protected { diff --git a/src/lib/eo/eina_types.eot b/src/lib/eo/eina_types.eot index dfea229..f25b727 100644 --- a/src/lib/eo/eina_types.eot +++ b/src/lib/eo/eina_types.eot @@ -23,3 +23,5 @@ struct @extern Eina.Matrix3 { } struct @extern Eina.Inarray; + +type @extern Eina.Unicode: uint32;