elm_clock : elm_clock_first_interval_set only set first_interval to 1 or 0.

This commit is contained in:
Ryuan Choi 2013-05-04 11:39:01 +09:00 committed by Daniel Juyung Seo
parent 39e3c91a02
commit 80c2c653a2
3 changed files with 6 additions and 1 deletions

View File

@ -1332,3 +1332,7 @@
* Fix gengrid does not work under the accessibility.
* Fix do not append NULL to genlist focus list.
2012-05-01 Ryuan Choi (ryuan)
* Fix elm_clock_first_interval_set writes wrong value.

View File

@ -225,6 +225,7 @@ Fixes:
* Don't be dead even if a ctxpopup item callback is null.
* Fix gengrid does not work under the accessibility.
* Fix do not append NULL to genlist focus list.
* Fix elm_clock_first_interval_set writes wrong value.
Removals:

View File

@ -1067,7 +1067,7 @@ _first_interval_set(Eo *obj EINA_UNUSED, void *_pd, va_list *list)
double interval = va_arg(*list, double);
Elm_Clock_Smart_Data *sd = _pd;
sd->first_interval = !!interval;
sd->first_interval = interval;
}
EAPI double