Corruption of Unicode keyboard input in chrome text fields on WinXP and 2000. Bug 191184. r=yokoyama, sr=kin, a=dbaron.

This commit is contained in:
smontagu%netscape.com 2003-02-06 00:29:27 +00:00
parent 5622d18c23
commit ae35546699

View File

@ -267,7 +267,11 @@ nsAppShell::GetNativeEvent(PRBool &aRealEvent, void *&aEvent)
nsresult nsAppShell::DispatchNativeEvent(PRBool aRealEvent, void *aEvent)
{
#ifdef MOZ_UNICODE
nsToolkit::mDispatchMessage((MSG *)aEvent);
#else
DispatchMessage((MSG *)aEvent);
#endif /* MOZ_UNICODE */
return NS_OK;
}