jaehwan pushed a commit to branch efl-1.13.

http://git.enlightenment.org/core/efl.git/commit/?id=ffdd54df345f815c7b650813a1a08d1e77f7e165

commit ffdd54df345f815c7b650813a1a08d1e77f7e165
Author: Jaehwan Kim <jae.hwan....@samsung.com>
Date:   Wed Apr 22 18:01:14 2015 +0900

    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
---
 src/lib/ecore/ecore_timer.eo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore/ecore_timer.eo b/src/lib/ecore/ecore_timer.eo
index f1c0403..dac06f5 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 {

-- 


Reply via email to