projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b18111
)
More error returns.
author
Brett Nash
<nash@nash.id.au>
Wed, 4 Aug 2010 02:03:57 +0000
(
02:03
+0000)
committer
Brett 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
patch
|
blob
|
history
diff --git
a/src/lib/elm_notify.c
b/src/lib/elm_notify.c
index 9b9f7678625404cf7184ee3b564cb1a0a5e5f8e4..43af75ae87b5cbcd7ad3f8dbcae771096aea1b26 100644
(file)
--- a/
src/lib/elm_notify.c
+++ b/
src/lib/elm_notify.c
@@
-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;
}