elementary, use ecore_timer_del instead of evas_object_del
authorJonathan Atton <jonathan.atton@gmail.com>
Wed, 23 Sep 2009 17:09:00 +0000 (17:09 +0000)
committerJonathan Atton <jonathan.atton@gmail.com>
Wed, 23 Sep 2009 17:09:00 +0000 (17:09 +0000)
SVN revision: 42649

src/lib/elm_notify.c

index 953c9b8..0375b66 100644 (file)
@@ -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);
 }