elementary/label - patched by kimcinoo@gmail.com

-----Original Message-----
From: "cnook"<kimcinoo@gmail.com>
To: "EFL"<enlightenment-devel@lists.sourceforge.net>
Cc:
Sent: 11-07-26(화) 13:58:55
Subject: [E-devel] [Patch] Elm_Label, Incompatible Widget Data TypeHi All,

The Elm_Wrap_Type have been added, and APIs have been changed also.
But there are some remains have to be changed as the attached patch.

Sincerely,
Shinwoo Kim.



SVN revision: 61726
This commit is contained in:
ChunEon Park 2011-07-26 05:57:32 +00:00
parent ae8211afbf
commit 98cbaed591
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ struct _Widget_Data
Evas_Coord lastw;
Evas_Coord wrap_w;
Evas_Coord wrap_h;
Eina_Bool linewrap : 1;
Elm_Wrap_Type linewrap;
Eina_Bool changed : 1;
Eina_Bool bgcolor : 1;
Eina_Bool ellipsis : 1;
@ -556,7 +556,7 @@ elm_label_add(Evas_Object *parent)
wd->bg = evas_object_rectangle_add(e);
evas_object_color_set(wd->bg, 0, 0, 0, 0);
wd->linewrap = EINA_FALSE;
wd->linewrap = ELM_WRAP_NONE;
wd->ellipsis = EINA_FALSE;
wd->slidingmode = EINA_FALSE;
wd->slidingellipsis = EINA_FALSE;