Set aspect width & height on the same line
authorChristopher Michael <cp.michael@samsung.com>
Tue, 19 Feb 2013 10:57:18 +0000 (10:57 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Tue, 19 Feb 2013 10:57:18 +0000 (10:57 +0000)
(pedantic commit just to remove 2 extra lines).

Signed-off-by: Christopher Michael <cp.michael@samsung.com>
SVN revision: 84161

src/modules/conf_randr/e_smart_monitor.c

index 3e932a2..432ffbb 100644 (file)
@@ -155,10 +155,8 @@ e_smart_monitor_output_set(Evas_Object *obj, Ecore_X_Randr_Output output)
 
    /* get the largest mode */
    mode = eina_list_last_data_get(sd->modes);
-   mw = mode->width;
-   mh = mode->height;
-   aw = mw;
-   ah = mh;
+   aw = mw = mode->width;
+   ah = mh = mode->height;
 
    sd->max.mode_width = mw;
    sd->max.mode_height = mh;