summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehwan Kim <jae.hwan.kim@samsung.com>2015-04-22 18:01:14 +0900
committerJaehwan Kim <jae.hwan.kim@samsung.com>2015-04-23 18:34:54 +0900
commitbd71d818f9943ca1a8545b932d6496ec7e83d55c (patch)
tree7e9009c204ed82ce2af7554ce30f1ed7588f2afe
parent023a91dc7de37fbc378be798e28019d3515319de (diff)
downloadefl-bd71d818f9943ca1a8545b932d6496ec7e83d55c.tar.gz
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
-rw-r--r--src/lib/ecore/ecore_timer.eo2
1 files changed, 1 insertions, 1 deletions
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 {