Remove 2 useless variables.

SVN revision: 43579
This commit is contained in:
Christopher Michael 2009-11-09 12:55:50 +00:00
parent df49f80eca
commit 3b022f66ae
1 changed files with 2 additions and 2 deletions

View File

@ -110,11 +110,11 @@ static void
_sizing_eval(Evas_Object *obj)
{
Widget_Data *wd = elm_widget_data_get(obj);
Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
Evas_Coord minw = -1, minh = -1;
edje_object_size_min_restricted_calc(wd->progressbar, &minw, &minh, minw, minh);
evas_object_size_hint_min_set(obj, minw, minh);
evas_object_size_hint_max_set(obj, maxw, maxh);
evas_object_size_hint_max_set(obj, -1, -1);
}
static void