elementary/diskselector - patched by kimcinoo@gmail.com

Dear All, Hi!

There were come codes in _del_pre_hook() that just don't make sense.
Please refer to the attached patch.

Sincerely,
Shinwoo Kim.



SVN revision: 62419
This commit is contained in:
ChunEon Park 2011-08-13 05:30:37 +00:00
parent 2a2b0f7102
commit 49843b1dad
1 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ _del_pre_hook(Evas_Object * obj)
if (it)
{
eina_stringshare_del(it->label);
if (wd->first) evas_object_del(wd->first->base.view);
evas_object_del(it->base.view);
free(it);
}
}
@ -234,7 +234,7 @@ _del_pre_hook(Evas_Object * obj)
if (it)
{
eina_stringshare_del(it->label);
if (wd->first) evas_object_del(wd->first->base.view);
evas_object_del(it->base.view);
free(it);
}
}