datetime: fixed elm_wdg_disable parameter ret to &int_ret for

consistency.
This commit is contained in:
Daniel Juyung Seo 2013-12-08 04:59:35 +09:00
parent b85558c512
commit c8d95e0dbf
1 changed files with 4 additions and 1 deletions

View File

@ -479,9 +479,12 @@ _elm_datetime_smart_disable(Eo *obj, void *_pd, va_list *list)
Datetime_Field *field;
unsigned int idx = 0;
if (ret) *ret = EINA_FALSE;
Eina_Bool int_ret;
Elm_Datetime_Smart_Data *sd = _pd;
eo_do_super(obj, MY_CLASS, elm_wdg_disable(ret));
eo_do_super(obj, MY_CLASS, elm_wdg_disable(&int_ret));
if (!int_ret) return;
for (idx = 0; idx < ELM_DATETIME_TYPE_COUNT; idx++)
{
field = sd->field_list + idx;