Shuting up GCC warnings!

SVN revision: 51098
This commit is contained in:
Iván Briano 2010-08-13 20:40:27 +00:00
parent 9c3dabedc9
commit f05fdb6085
1 changed files with 3 additions and 3 deletions

View File

@ -2368,7 +2368,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params)
text = (Edje_Part_Description_Text*) rp->custom->description;
s = text->text.text.str;
s = (char *)text->text.text.str;
SETSTRALLOCATE(s);
break;
@ -2400,7 +2400,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params)
text = (Edje_Part_Description_Text*) rp->custom->description;
s = text->text.font.str;
s = (char *)text->text.font.str;
SETSTRALLOCATE(s);
break;
@ -2415,7 +2415,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params)
text = (Edje_Part_Description_Text*) rp->custom->description;
s = text->text.style.str;
s = (char *)text->text.style.str;
SETSTRALLOCATE(s);
break;