evas/canvas: Remove set but unused variable.

SVN revision: 74808
This commit is contained in:
Stefan Schmidt 2012-08-02 16:05:49 +00:00
parent d59b7badac
commit 49caa43011
1 changed files with 1 additions and 4 deletions

View File

@ -136,11 +136,8 @@ evas_layer_del(Evas_Layer *lay)
static void
_evas_object_layer_set_child(Evas_Object *obj, Evas_Object *par, short l)
{
Evas *e;
if (obj->delete_me) return;
if (obj->cur.layer == l) return;
e = obj->layer->evas;
evas_object_release(obj, 1);
obj->cur.layer = l;
obj->layer = par->layer;
@ -149,7 +146,7 @@ _evas_object_layer_set_child(Evas_Object *obj, Evas_Object *par, short l)
{
Eina_Inlist *contained;
Evas_Object *member;
contained = (Eina_Inlist *)evas_object_smart_members_get_direct(obj);
EINA_INLIST_FOREACH(contained, member)
{