Remove dead assignments

SVN revision: 53782
This commit is contained in:
Bruno Dilly 2010-10-22 20:11:31 +00:00
parent 3ec77727cc
commit 1f1b687c24
2 changed files with 0 additions and 3 deletions

View File

@ -89,7 +89,6 @@ test_weather(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_inf
module[0] = NULL;
weather[0] = eweather_object_add(evas_object_evas_get(win));
eweather = eweather_object_eweather_get(weather[0]);
evas_object_size_hint_weight_set(weather[0], EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(weather[0], -1.0, -1.0);
elm_flip_content_front_set(fl, weather[0]);

View File

@ -71,9 +71,7 @@ static Elm_Hoverlist_Item *
_item_new(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Smart_Cb func, const void *data)
{
Elm_Hoverlist_Item *it;
Widget_Data *wd;
wd = elm_widget_data_get(obj);
it = elm_widget_item_new(obj, Elm_Hoverlist_Item);
if (!it)
return NULL;