Elementary pager: Fixed warnings.

SVN revision: 60084
This commit is contained in:
Daniel Juyung Seo 2011-06-08 10:38:36 +00:00
parent 31536211cd
commit 05e9808e0c
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ _item_get(Evas_Object *obj, Evas_Object *content)
Widget_Data *wd = elm_widget_data_get(obj);
Item *it;
Eina_List *l;
if (!wd) return;
if (!wd) return NULL;
EINA_LIST_FOREACH(wd->stack, l, it)
{
@ -232,7 +232,7 @@ _move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSE
}
static void
_content_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
_content_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
Widget_Data *wd = elm_widget_data_get(data);
Eina_List *l;