elm: fixed build break caused by my two commits.

SVN revision: 80533
This commit is contained in:
Daniel Juyung Seo 2012-12-08 18:39:24 +00:00
parent 449e0c4f79
commit f11ad7850a
5 changed files with 5 additions and 6 deletions

View File

@ -1284,7 +1284,6 @@ static void
_elm_naviframe_smart_del(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
{
Elm_Naviframe_Item *it;
Eina_List *l;
Elm_Naviframe_Smart_Data *sd = _pd;
@ -1297,7 +1296,7 @@ _elm_naviframe_smart_del(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
}
//All popping items which are not called yet by animator.
EINA_LIST_FREE(sd->popping, l, it)
EINA_LIST_FREE(sd->popping, it)
{
if (it->animator) ecore_animator_del(it->animator);
elm_widget_item_del(it);

View File

@ -21,7 +21,7 @@ typedef struct _Elm_Box_Smart_Data Elm_Box_Smart_Data;
struct _Elm_Box_Smart_Data
{
Eina_Bool homogeneous : 1;
Eina_Bool on_deletion : 1;
Eina_Bool delete_me : 1;
Eina_Bool horizontal : 1;
Eina_Bool recalc : 1;
};

View File

@ -26,7 +26,7 @@ struct _Elm_Panel_Smart_Data
Elm_Panel_Orient orient;
Eina_Bool hidden : 1;
Eina_Bool on_deletion : 1;
Eina_Bool delete_me : 1;
};
/**

View File

@ -77,7 +77,7 @@ struct _Elm_Prefs_Smart_Data
Eina_Bool changing_from_ui : 1;
Eina_Bool values_fetching : 1;
Eina_Bool on_deletion : 1;
Eina_Bool delete_me : 1;
Eina_Bool autosave : 1;
Eina_Bool dirty : 1;
};

View File

@ -45,7 +45,7 @@ struct _Elm_Toolbar_Smart_Data
Eina_Bool vertical : 1;
Eina_Bool long_press : 1;
Eina_Bool homogeneous : 1;
Eina_Bool on_deletion : 1;
Eina_Bool delete_me : 1;
Eina_Bool reorder_mode : 1;
Eina_Bool transverse_expanded : 1;
};