Fix signedness of x properties

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2018-11-01 11:12:20 +00:00
parent 32e0b45255
commit 4f4201976d
5 changed files with 24 additions and 29 deletions

View File

@@ -24,10 +24,10 @@ typedef struct {
/// A structure representing margins around a rectangle.
typedef struct {
int top;
int left;
int bottom;
int right;
unsigned int top;
unsigned int left;
unsigned int bottom;
unsigned int right;
} margin_t;
typedef uint32_t opacity_t;