evas: remove unused variables

SVN revision: 48819
This commit is contained in:
Sebastian Dransfeld 2010-05-13 20:23:49 +00:00
parent 7c1298ea04
commit ab7e6fe3f8
2 changed files with 2 additions and 5 deletions

View File

@ -113,7 +113,6 @@ evas_object_polygon_point_add(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
Evas_Polygon_Point *p; Evas_Polygon_Point *p;
Evas_Coord min_x, max_x, min_y, max_y; Evas_Coord min_x, max_x, min_y, max_y;
int is, was = 0; int is, was = 0;
int off_x, off_y;
MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ);
return; return;

View File

@ -2120,8 +2120,6 @@ _layout(const Evas_Object *obj, int calc_only, int w, int h, int *w_ret, int *h_
{ {
if (!c->ln) if (!c->ln)
{ {
int tw, th;
_layout_line_new(c, fmt); _layout_line_new(c, fmt);
_layout_text_append(c, fmt, NULL, NULL); _layout_text_append(c, fmt, NULL, NULL);
_layout_line_advance(c, fmt); _layout_line_advance(c, fmt);
@ -2172,9 +2170,9 @@ _layout(const Evas_Object *obj, int calc_only, int w, int h, int *w_ret, int *h_
// href == name of item - to be found and matched later and used for // href == name of item - to be found and matched later and used for
// positioning // positioning
Evas_Object_Textblock_Format_Item *fi; Evas_Object_Textblock_Format_Item *fi;
int x2, w = 1, h = 1, y = 0; int x2, w = 1, h = 1;
int vsize = 0, size = 0; int vsize = 0, size = 0;
char *p, *href; char *p;
// don't care // don't care
//href = strstr(s, " href="); //href = strstr(s, " href=");