elemenatry/widget - added NULL check

SVN revision: 66322
This commit is contained in:
ChunEon Park 2011-12-19 07:22:25 +00:00
parent 507e025612
commit 98686a8dc6
1 changed files with 1 additions and 1 deletions

View File

@ -1941,7 +1941,7 @@ elm_widget_focused_object_clear(Evas_Object *obj)
{
API_ENTRY return;
if (!sd->focused) return;
if (elm_widget_focus_get(sd->resize_obj))
if (sd->resize_obj && elm_widget_focus_get(sd->resize_obj))
elm_widget_focused_object_clear(sd->resize_obj);
else
{