elementary: Reduce variable usage

As we don't use the framespace x, y here then there is really no need
to have them.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-27 12:02:51 -04:00
parent 3b82375835
commit 3754ad0477
1 changed files with 2 additions and 2 deletions

View File

@ -2979,9 +2979,9 @@ _elm_win_resize_objects_eval(Evas_Object *obj)
if (sd->frame_obj)
{
int fx, fy, fw, fh;
int fw, fh;
evas_output_framespace_get(sd->evas, &fx, &fy, &fw, &fh);
evas_output_framespace_get(sd->evas, NULL, NULL, &fw, &fh);
minw += fw;
minh += fh;
maxw += fw;