summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2016-07-27 12:02:51 -0400
committerChris Michael <cp.michael@samsung.com>2016-07-27 12:02:51 -0400
commit3754ad04770ad61686e901363ba11d05ff39e135 (patch)
tree7061eba2275fff28175bd3476bf9dc8accf10e56
parent3b82375835b7fc5d768d1c32ae6c4db85ee8780d (diff)
downloadefl-3754ad04770ad61686e901363ba11d05ff39e135.tar.gz
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>
-rw-r--r--src/lib/elementary/efl_ui_win.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c
index e35589e8b4..21c9ccffa4 100644
--- a/src/lib/elementary/efl_ui_win.c
+++ b/src/lib/elementary/efl_ui_win.c
@@ -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;