* edje: Some more warning cleanup.

SVN revision: 44632
This commit is contained in:
Cedric BAIL 2009-12-21 16:24:39 +00:00
parent 78fdf79b00
commit b3c373b571
2 changed files with 2 additions and 2 deletions

View File

@ -1971,7 +1971,7 @@ _edje_entry_cursor_down(Edje_Real_Part *rp, Edje_Cursor cur)
{
Evas_Textblock_Cursor *c = _cursor_get(rp, cur);
Evas_Coord lx, ly, lw, lh, cx, cy, cw, ch;
int ln, ll;
int ln;
if (!c) return 0;
ln = evas_textblock_cursor_line_geometry_get(c, NULL, NULL, NULL, NULL);
ln++;

View File

@ -4049,7 +4049,7 @@ _edje_lua_part_fn_box_insert_before(lua_State *L)
Edje_Lua_Evas_Object *tar = _edje_lua_checkudata(L, 2, &mObject);
Edje_Lua_Evas_Object *ref = _edje_lua_checkudata(L, 3, &mObject);
lua_pushboolean(L,
edje_object_part_box_insert_before(obj->ed->obj, obj->key, tar->eo, tar->eo));
edje_object_part_box_insert_before(obj->ed->obj, obj->key, tar->eo, ref->eo));
return 1;
}