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-27 17:54:07 +0900
commit8c03b56c9881339dc7df1f1a0e56b83b49c7a606 (patch)
tree261d178912b6e2346b4fd41ff53e6c15c51bc48f
parentb012c78fb5989c106e58131a5501e6a5bc0cc1d0 (diff)
downloadefl-8c03b56c9881339dc7df1f1a0e56b83b49c7a606.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 Change-Id: Ied080e1b2e25412d6ab69124184165de4b498e91 origin: upstream
-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 {