André Hentschel : imm32: Remove redundant check.
Module: wine Branch: master Commit: ee44ff9597346bd9c8e6205ffd2d8009b62958f8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ee44ff9597346bd9c8e6205ffd... Author: André Hentschel <nerv(a)dawncrow.de> Date: Sun Jul 3 19:32:05 2011 +0200 imm32: Remove redundant check. --- dlls/imm32/imm.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index fe394e3..a8392ff 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -1889,7 +1889,6 @@ BOOL WINAPI ImmIsUIMessageA( (msg == WM_IME_NOTIFY) || (msg == WM_IME_COMPOSITIONFULL) || (msg == WM_IME_SELECT) || - (msg == WM_IME_SELECT) || (msg == 0x287 /* FIXME: WM_IME_SYSTEM */) || (msg == WM_MSIME_RECONVERTOPTIONS) || (msg == WM_MSIME_MOUSE) || @@ -1920,7 +1919,6 @@ BOOL WINAPI ImmIsUIMessageW( (msg == WM_IME_NOTIFY) || (msg == WM_IME_COMPOSITIONFULL) || (msg == WM_IME_SELECT) || - (msg == WM_IME_SELECT) || (msg == 0x287 /* FIXME: WM_IME_SYSTEM */) || (msg == WM_MSIME_RECONVERTOPTIONS) || (msg == WM_MSIME_MOUSE) ||
participants (1)
-
Alexandre Julliard