From: Jean-Philippe Andre Date: Thu, 18 Jan 2018 07:20:21 +0000 (+0900) Subject: win: Avoid a warning X-Git-Tag: upstream/1.21.0~2233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d453f703c0d8079e22d39709234aff3274dfe93;p=platform%2Fupstream%2Fefl.git win: Avoid a warning I still hate those types. warning: case value not in enumerated type 'Efl_Ui_Win_Type' [-Wswitch] --- diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 5efecc5..2ed459a 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -127,7 +127,7 @@ struct _Efl_Ui_Win_Data } win32; #endif - Efl_Ui_Win_Type type; + unsigned /* Efl_Ui_Win_Type */ type; Efl_Ui_Win_Keyboard_Mode kbdmode; Efl_Ui_Win_Indicator_Mode indimode; // TIZEN_ONLY(20150707): elm_conform for wayland, and signal if parts are changed