From a1b35c8f871b63f99693b7d387197283e3e886e8 Mon Sep 17 00:00:00 2001 From: Jonathan Atton Date: Wed, 23 Sep 2009 17:09:00 +0000 Subject: [PATCH] elementary, use ecore_timer_del instead of evas_object_del SVN revision: 42649 --- src/lib/elm_notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_notify.c b/src/lib/elm_notify.c index 953c9b8..0375b66 100644 --- a/src/lib/elm_notify.c +++ b/src/lib/elm_notify.c @@ -313,7 +313,7 @@ elm_notify_timer_init(Evas_Object *obj) { Widget_Data *wd = elm_widget_data_get(obj); if(wd->timer) - evas_object_del(wd->timer); + ecore_timer_del(wd->timer); if(wd->timeout>0) wd->timer = ecore_timer_add(wd->timeout, _timer_cb, obj); } -- 2.7.4