elm elm_index.c: fixed formatting.

This commit is contained in:
Daniel Juyung Seo 2013-03-04 19:13:20 +09:00
parent 285ed82000
commit ba0dc018f7
2 changed files with 8 additions and 8 deletions

View File

@ -123,7 +123,7 @@ _omit_calc(void *data, int num_of_items, int max_num_of_items)
Eina_List *l;
EINA_LIST_FREE(sd->omit, o)
free(o);
free(o);
EINA_LIST_FOREACH(sd->items, l, it)
{
@ -989,7 +989,7 @@ _elm_index_smart_del(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
}
EINA_LIST_FREE(sd->omit, o)
free(o);
free(o);
if (sd->delay) ecore_timer_del(sd->delay);

View File

@ -45,14 +45,14 @@ struct _Elm_Index_Item
{
ELM_WIDGET_ITEM;
const char *letter;
int level;
Evas_Smart_Cb func;
const char *letter;
int level;
Evas_Smart_Cb func;
Eina_List *omitted;
Elm_Index_Item *head;
Eina_List *omitted;
Elm_Index_Item *head;
Eina_Bool selected : 1;
Eina_Bool selected : 1;
};
typedef struct _Elm_Index_Omit Elm_Index_Omit;