Bug 298549 - nsBidiKeyboard.cpp breaks gcc 4 builds. patch from Mark Mentovai <mark@moxienet.com>, r=me, sr=smfr, a=mkaply.

This commit is contained in:
mozilla.mano%sent.com 2005-06-23 17:50:41 +00:00
Родитель f79316fc57
Коммит 82eeff1d45
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -57,11 +57,11 @@ NS_IMETHODIMP nsBidiKeyboard::IsLangRTL(PRBool *aIsRTL)
OSStatus err;
KeyboardLayoutRef currentKeyboard;
void* currentKeyboardResID;
err = ::KLGetCurrentKeyboardLayout(&currentKeyboard);
if (err == noErr)
{
const void* currentKeyboardResID;
err = ::KLGetKeyboardLayoutProperty(currentKeyboard, kKLIdentifier,
&currentKeyboardResID);
if (err == noErr)