discomfitor pushed a commit to branch enlightenment-0.20.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=59762676a8046fd671ecdcb00f2b794e575c94df

commit 59762676a8046fd671ecdcb00f2b794e575c94df
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Tue Dec 15 10:20:33 2015 -0500

    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 <cpmich...@osg.samsung.com>
---
 src/modules/wl_desktop_shell/e_mod_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/wl_desktop_shell/e_mod_main.c 
b/src/modules/wl_desktop_shell/e_mod_main.c
index 9935c35..bb4020d 100644
--- a/src/modules/wl_desktop_shell/e_mod_main.c
+++ b/src/modules/wl_desktop_shell/e_mod_main.c
@@ -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;

-- 


Reply via email to