Use IsDBCSLeadByteEx() instead of IsDBCSLeadByte()
to allow specifying the current IME code point.
IME input method improvement
/r=shanjian;/sr=kin
This commit is contained in:
yokoyama%netscape.com 2002-06-24 22:49:25 +00:00
Родитель 7caefab6ed
Коммит fd9426a3fb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2967,7 +2967,7 @@ BOOL nsWindow::OnChar( UINT mbcsCharCode, UINT virtualKeyCode, bool isMultiByte
}
else {
charToConvert[0] = LOBYTE(mbcsCharCode);
if (::IsDBCSLeadByte(charToConvert[0])) {
if (::IsDBCSLeadByteEx(gCurrentKeyboardCP, charToConvert[0])) {
mLeadByte = charToConvert[0];
return TRUE;
}