From: raster Date: Mon, 13 Feb 2012 14:37:41 +0000 (+0000) Subject: make rect_t use int's... no overflow. yay! X-Git-Tag: 2.0_alpha~134^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dcbbe791fc8fa4e9804b92e3128a8d76f9d6403f;p=framework%2Fuifw%2Fevas.git make rect_t use int's... no overflow. yay! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@67884 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/include/evas_common.h b/src/lib/include/evas_common.h index a9063e6..746d2c2 100644 --- a/src/lib/include/evas_common.h +++ b/src/lib/include/evas_common.h @@ -1005,12 +1005,12 @@ struct list struct rect { - short left; - short top; - short right; - short bottom; - short width; - short height; + int left; + int top; + int right; + int bottom; + int width; + int height; int area; };