const char *obj_style = elm_widget_style_get(obj);
if (obj_style && !strcmp(obj_style, "default"))
- ret = elm_widget_style_set(sd->notify, "popup");
+ ret = _elm_widget_style_set_internal(sd->notify, "popup");
else
- ret = elm_widget_style_set(sd->notify, obj_style);
+ ret = _elm_widget_style_set_internal(sd->notify, obj_style);
if (ret != ELM_THEME_APPLY_SUCCESS)
- if (elm_widget_style_set(sd->notify, style) != ELM_THEME_APPLY_SUCCESS)
- if (elm_widget_style_set(sd->notify, "popup") != ELM_THEME_APPLY_SUCCESS)
- elm_widget_style_set(sd->notify, "popup/default");
+ if (_elm_widget_style_set_internal(sd->notify, style) != ELM_THEME_APPLY_SUCCESS)
+ if (_elm_widget_style_set_internal(sd->notify, "popup") != ELM_THEME_APPLY_SUCCESS)
+ _elm_widget_style_set_internal(sd->notify, "popup/default");
}
/* END */
const char *obj_style = elm_widget_style_get(obj);
if (obj_style && !strcmp(obj_style, "default"))
- ret = elm_widget_style_set(priv->notify, "popup");
+ ret = _elm_widget_style_set_internal(priv->notify, "popup");
else
- ret = elm_widget_style_set(priv->notify, obj_style);
+ ret = _elm_widget_style_set_internal(priv->notify, obj_style);
if (ret != ELM_THEME_APPLY_SUCCESS)
- if (elm_widget_style_set(priv->notify, style) != ELM_THEME_APPLY_SUCCESS)
- if (elm_widget_style_set(priv->notify, "popup") != ELM_THEME_APPLY_SUCCESS)
- elm_widget_style_set(priv->notify, "popup/default");
+ if (_elm_widget_style_set_internal(priv->notify, style) != ELM_THEME_APPLY_SUCCESS)
+ if (_elm_widget_style_set_internal(priv->notify, "popup") != ELM_THEME_APPLY_SUCCESS)
+ _elm_widget_style_set_internal(priv->notify, "popup/default");
}
/* END */