bug 275199 : Cannot reconvert with Japanist(Japanese IME) on WinNT patch by masayuki@d-toybox.com, r=ere, sr=bz, a=asa

This commit is contained in:
jshin%mailaps.org 2005-01-11 04:31:18 +00:00
parent 3678df3a9a
commit 3bb6f2cc92
2 changed files with 2 additions and 2 deletions

View File

@ -4455,7 +4455,7 @@ PRBool nsWindow::ProcessMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT
// This is a Window 98/2000 only message
case WM_IME_REQUEST:
result = OnIMERequest(wParam, lParam, aRetValue);
result = OnIMERequest(wParam, lParam, aRetValue, nsToolkit::mIsNT);
break;
case WM_IME_SELECT:

View File

@ -447,7 +447,7 @@ protected:
BOOL OnIMECompositionFull();
BOOL OnIMEEndComposition();
BOOL OnIMENotify(WPARAM aIMN, LPARAM aData, LRESULT *oResult);
BOOL OnIMERequest(WPARAM aIMR, LPARAM aData, LRESULT *oResult, PRBool aUseUnicode = PR_FALSE);
BOOL OnIMERequest(WPARAM aIMR, LPARAM aData, LRESULT *oResult, PRBool aUseUnicode);
BOOL OnIMESelect(BOOL aSelected, WORD aLangID);
BOOL OnIMESetContext(BOOL aActive, LPARAM& aISC);
BOOL OnIMEStartComposition();