elementary/naviframe - bottom_item_get returned NULL always.. fixed it

SVN revision: 63913
This commit is contained in:
ChunEon Park 2011-10-07 10:33:14 +00:00
parent 1381cd24e2
commit 5c3609fec2
1 changed files with 2 additions and 2 deletions

View File

@ -966,8 +966,8 @@ elm_naviframe_bottom_item_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return NULL;
return NULL;
if ((!wd) || (!wd->stack)) return NULL;
return wd->stack->data;
}
EAPI void