elementary/ctxpopup - added minor exceptions.

SVN revision: 58959
This commit is contained in:
ChunEon Park 2011-04-27 13:09:37 +00:00
parent d4b5ea4f8d
commit 88d0fb25a5
1 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ _freeze_on(void *data __UNUSED__, Evas_Object *obj,
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if ((!wd) || (!wd->scr)) return;
elm_object_scroll_freeze_push(wd->scr);
}
@ -139,7 +139,7 @@ _freeze_off(void *data __UNUSED__, Evas_Object *obj,
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if ((!wd) || (!wd->scr)) return;
elm_object_scroll_freeze_pop(wd->scr);
}
@ -148,7 +148,7 @@ _hold_on(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if ((!wd) || (!wd->scr)) return;
elm_object_scroll_hold_push(wd->scr);
}
@ -157,7 +157,7 @@ _hold_off(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if ((!wd) || (!wd->scr)) return;
elm_object_scroll_hold_pop(wd->scr);
}