theme: changed function name.

This commit is contained in:
Daniel Juyung Seo 2012-11-30 15:15:44 +09:00
parent c95f33cc02
commit e1dabab54e
3 changed files with 5 additions and 5 deletions

2
gui.c
View File

@ -144,7 +144,7 @@ _widget_list_sel_cb(void *data, Evas_Object *obj, void *event_info)
li = elm_list_add(nf);
elm_list_select_mode_set(li, ELM_OBJECT_SELECT_MODE_ALWAYS);
styles = widget_styles_get((const char *)data);
styles = theme_widget_styles_get((const char *)data);
EINA_LIST_FOREACH(styles, l, style)
{
// TODO: sd needs to be freed properly

View File

@ -90,7 +90,7 @@ theme_load(const char *edje_file)
}
Eina_List *
widget_styles_get(const char *widget)
theme_widget_styles_get(const char *widget)
{
Widget_Data *wd = NULL;
Eina_List *l;
@ -106,7 +106,7 @@ widget_styles_get(const char *widget)
}
void
widget_styles_print(const char *widget)
theme_widget_styles_print(const char *widget)
{
Eina_List *l = NULL;
Widget_Data *wd = NULL;

View File

@ -12,7 +12,7 @@ struct _Widget_Data
void theme_init(void);
void theme_load(const char *edje_file);
Eina_List * widget_styles_get(const char *widget);
void widget_styles_print(const char *widget);
Eina_List * theme_widget_styles_get(const char *widget);
void theme_widget_styles_print(const char *widget);
#endif