projects
/
framework
/
uifw
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e660a15
)
[label] fixed bug in mis-matched widget data type in EFL open source elm_label
author
Myungjae Lee
<mjae.lee@samsung.com>
Tue, 26 Jul 2011 08:11:04 +0000
(17:11 +0900)
committer
Myungjae Lee
<mjae.lee@samsung.com>
Tue, 26 Jul 2011 08:11:04 +0000
(17:11 +0900)
src/lib/elm_label.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_label.c
b/src/lib/elm_label.c
index
7dcf50c
..
b0e5bee
100644
(file)
--- a/
src/lib/elm_label.c
+++ b/
src/lib/elm_label.c
@@
-21,7
+21,7
@@
struct _Widget_Data
Evas_Coord lastw;
Evas_Coord wrap_w;
Evas_Coord wrap_h;
- E
ina_Bool linewrap : 1
;
+ E
lm_Wrap_Type linewrap
;
Eina_Bool changed : 1;
Eina_Bool bgcolor : 1;
Eina_Bool ellipsis : 1;
@@
-600,7
+600,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 = E
INA_FALS
E;
+ wd->linewrap = E
LM_WRAP_NON
E;
wd->ellipsis = EINA_FALSE;
wd->slidingmode = EINA_FALSE;
wd->slidingellipsis = EINA_FALSE;