More error returns.
authorBrett Nash <nash@nash.id.au>
Wed, 4 Aug 2010 02:03:57 +0000 (02:03 +0000)
committerBrett Nash <nash@nash.id.au>
Wed, 4 Aug 2010 02:03:57 +0000 (02:03 +0000)
Please people, when you add a function look at what it compiles too.

SVN revision: 50801

src/lib/elm_notify.c

index 9b9f7678625404cf7184ee3b564cb1a0a5e5f8e4..43af75ae87b5cbcd7ad3f8dbcae771096aea1b26 100644 (file)
@@ -518,7 +518,7 @@ elm_notify_timeout_get(const Evas_Object *obj)
 {
        ELM_CHECK_WIDTYPE(obj, widtype);
        Widget_Data *wd = elm_widget_data_get(obj);
-       if (!wd) return;
+       if (!wd) return -1;
        return wd->timeout;
 }
 
@@ -576,7 +576,7 @@ elm_notify_repeat_events_get(const Evas_Object *obj)
 {
        ELM_CHECK_WIDTYPE(obj, widtype);
        Widget_Data *wd = elm_widget_data_get(obj);
-       if (!wd) return;
+       if (!wd) return EINA_FALSE;
        return wd->repeat_events;
 }