Pass the user supplied Evas_Object to the resize func, as the user

shouldn't deal with the popup Evas_Object.


SVN revision: 31559
This commit is contained in:
Sebastian Dransfeld 2007-08-27 21:39:12 +00:00
parent 6f390fc035
commit af9dd29dfc
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ e_gadcon_popup_show(E_Gadcon_Popup *pop)
edje_object_size_min_calc(pop->o_bg, &ww, &wh);
e_popup_show(pop->win);
if (pop->resize_func) pop->resize_func(pop->o_bg, &ww, &wh);
if (pop->resize_func) pop->resize_func(o, &ww, &wh);
evas_object_resize(pop->o_bg, ww, wh);
pop->w = ww;
pop->h = wh;