From: Jaehwan Kim Date: Wed, 22 Apr 2015 09:01:14 +0000 (+0900) Subject: ecore_timer: fix the default return value. X-Git-Tag: v1.14.0-beta3~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd71d818f9943ca1a8545b932d6496ec7e83d55c;p=platform%2Fupstream%2Fefl.git ecore_timer: fix the default return value. When this function fails to get the interval value, it should return -1.0. Currently, the value can be integer(-1.0 has an Error). Maybe it should be fixed. @fix --- diff --git a/src/lib/ecore/ecore_timer.eo b/src/lib/ecore/ecore_timer.eo index f1c04039e5..dac06f5160 100644 --- a/src/lib/ecore/ecore_timer.eo +++ b/src/lib/ecore/ecore_timer.eo @@ -19,7 +19,7 @@ class Ecore.Timer (Eo.Base) /*@ Get the interval the timer ticks on. */ } values { - double in; /*@ The new interval in seconds */ + double in(-1); /*@ The new interval in seconds */ } } pending {