From 2835d78d8d5ea7592bc04905db4c85c0abab728c Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 29 May 2007 23:31:35 +0200 Subject: [PATCH] kernel32: Remove the fixme about MB_USEGLYPHCHARS. --- dlls/kernel32/locale.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/kernel32/locale.c b/dlls/kernel32/locale.c index 74593e56ea1..859f30a32a3 100644 --- a/dlls/kernel32/locale.c +++ b/dlls/kernel32/locale.c @@ -1764,7 +1764,6 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen, { const union cptable *table; int ret; - static int once; if (!src || (!dst && dstlen)) { @@ -1774,12 +1773,6 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen, if (srclen < 0) srclen = strlen(src) + 1; - if (!once && (flags & MB_USEGLYPHCHARS)) - { - once = 1; - FIXME("MB_USEGLYPHCHARS not supported\n"); - } - switch(page) { case CP_SYMBOL: -- 2.11.4.GIT