elm_win: Fixed warning after 99ab56d5

ELM_WIDGET_SUB_ID_THEME needs to return Eina_Bool.
In addition, calls the super function of ELM_WIDGET_SUB_ID_THEME.

Reproduce step is changing profile in elementary_config.
This commit is contained in:
Ryuan Choi 2013-10-11 21:52:15 +09:00
parent 787eddd3c4
commit bdab578c1a
1 changed files with 10 additions and 0 deletions

View File

@ -5211,8 +5211,18 @@ static void
_elm_win_smart_theme(Eo *obj EINA_UNUSED, void *_pd, va_list *list EINA_UNUSED)
{
Elm_Win_Smart_Data *sd = _pd;
Eina_Bool *ret = va_arg(*list, Eina_Bool *);
Eina_Bool int_ret = EINA_FALSE;
if (ret) *ret = EINA_TRUE;
eo_do_super(obj, MY_CLASS, elm_wdg_theme(&int_ret));
if (!int_ret) return;
sd->focus_highlight.theme_changed = EINA_TRUE;
_elm_win_focus_highlight_reconfigure_job_start(sd);
if (ret) *ret = EINA_TRUE;
}
static void