fix some escaping :)

SVN revision: 34066
This commit is contained in:
Carsten Haitzler 2008-03-20 21:15:16 +00:00
parent 2ef004009b
commit f2aeab1bd6
1 changed files with 2 additions and 2 deletions

View File

@ -2025,7 +2025,7 @@ _layout(const Evas_Object *obj, int calc_only, int w, int h, int *w_ret, int *h_
_layout_format_value_handle(c, fmt, item); _layout_format_value_handle(c, fmt, item);
else else
{ {
if (!strcmp(item, "\n")) if ((!strcmp(item, "\n")) || (!strcmp(item, "\\n")))
{ {
Evas_Object_Textblock_Format_Item *fi; Evas_Object_Textblock_Format_Item *fi;
@ -2034,7 +2034,7 @@ _layout(const Evas_Object *obj, int calc_only, int w, int h, int *w_ret, int *h_
fi->w = 0; fi->w = 0;
_layout_line_advance(c, fmt); _layout_line_advance(c, fmt);
} }
else if (!strcmp(item, "\t")) else if ((!strcmp(item, "\t")) || (!strcmp(item, "\\t")))
{ {
Evas_Object_Textblock_Format_Item *fi; Evas_Object_Textblock_Format_Item *fi;
int x2; int x2;