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
This commit is contained in:
Jaehwan Kim 2015-04-22 18:01:14 +09:00
parent 023a91dc7d
commit bd71d818f9
1 changed files with 1 additions and 1 deletions

View File

@ -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 {