elementary/naviframe - prevent accessing a null pointer

SVN revision: 66525
This commit is contained in:
ChunEon Park 2011-12-26 08:03:30 +00:00
parent 91c9921fd7
commit 20cc624603
2 changed files with 6 additions and 5 deletions

View File

@ -30053,14 +30053,14 @@ extern "C" {
EAPI Eina_Inlist *elm_naviframe_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
/**
* @brief Set the event enabled when pushing/popping items
* @brief Set the event enabled when pushing/popping items
*
* If @c enabled is EINA_TRUE, the contents of the naviframe item will
* If @c enabled is EINA_TRUE, the contents of the naviframe item will
* receives events from mouse and keyboard during view changing such as
* item push/pop.
*
* @param obj The naviframe object
* @param enabled Events are received when enabled is @c EINA_TRUE, and
* @param enabled Events are received when enabled is @c EINA_TRUE, and
* ignored otherwise.
*
* @warning Events will be blocked by calling evas_object_freeze_events_set()
@ -30085,7 +30085,7 @@ extern "C" {
*/
EAPI Eina_Bool elm_naviframe_event_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
/**
/**
* @}
*/

View File

@ -817,7 +817,6 @@ _title_content_unset(Elm_Naviframe_Item *it, const char *part)
return content;
}
static void
_item_del(Elm_Naviframe_Item *it)
{
@ -1362,6 +1361,8 @@ elm_naviframe_item_del(Elm_Object_Item *it)
{
wd->stack = eina_inlist_remove(wd->stack, EINA_INLIST_GET(navi_it));
_item_del(navi_it);
//If the item is only one, the stack will be empty
if (!wd->stack) return;
navi_it = EINA_INLIST_CONTAINER_GET(wd->stack->last,
Elm_Naviframe_Item);
evas_object_show(VIEW(navi_it));