Fix type of size fields for E_Shell_Data

In the xdg_surface_configure_send function, the size params
(width/height) come in as int32_t. This patch makes the E_Shell_Data
fields for width & height match those (else we end up with compiler
warnings when comparing int32_t to uint32_t).

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2015-12-15 10:20:33 -05:00
parent d0aa609f08
commit e40033be0a
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@
struct E_Shell_Data
{
uint32_t edges;
uint32_t width;
uint32_t height;
int32_t width;
int32_t height;
Eina_Bool fullscreen : 1;
Eina_Bool maximized : 1;
Eina_Bool activated : 1;