From e669719714443ac7c51b732465a00005fcbf20e3 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 13 Feb 2012 14:37:41 +0000 Subject: [PATCH] make rect_t use int's... no overflow. yay! SVN revision: 67884 --- legacy/evas/src/lib/include/evas_common.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/legacy/evas/src/lib/include/evas_common.h b/legacy/evas/src/lib/include/evas_common.h index a9063e6..746d2c2 100644 --- a/legacy/evas/src/lib/include/evas_common.h +++ b/legacy/evas/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; }; -- 2.7.4