Evas textblock: Use Evas_Coord instead of int for coords.
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 30 May 2011 13:19:10 +0000 (13:19 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 30 May 2011 13:19:10 +0000 (13:19 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@59815 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_object_textblock.c

index 4bc5887..117c3b3 100644 (file)
@@ -266,7 +266,7 @@ struct _Evas_Object_Textblock_Paragraph
    Evas_Object_Textblock_Node_Text   *text_node;
    Eina_List                         *logical_items;
    Evas_BiDi_Paragraph_Props         *bidi_props;
-   int                                x, y, w, h;
+   Evas_Coord                         x, y, w, h;
    int                                line_no;
    Eina_Bool                          visible : 1;
    Eina_Bool                          indexed : 1;
@@ -278,7 +278,7 @@ struct _Evas_Object_Textblock_Line
    Evas_Object_Textblock_Item        *items;
    Evas_Object_Textblock_Paragraph   *par;
    Evas_Object_Textblock_Text_Item   *ellip_ti;
-   int                                x, y, w, h;
+   Evas_Coord                         x, y, w, h;
    int                                baseline;
    int                                line_no;
 };