mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:15:41 +00:00
Correct handling of dead_char in TryToTranslateChar.
A patch to NtUserTranslateMessage is also needed for fully correct support of dead keys. -- patch by Jean-Michel Gay svn path=/trunk/; revision=6564
This commit is contained in:
parent
acfd676db0
commit
6c504bcc4c
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: keyboard.c,v 1.13 2003/10/18 21:48:18 weiden Exp $
|
/* $Id: keyboard.c,v 1.14 2003/11/07 19:58:43 arty Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -687,8 +687,8 @@ NtUserTranslateMessage(LPMSG lpMsg,
|
||||||
wp[0] = accent_chars[i].ac_result;
|
wp[0] = accent_chars[i].ac_result;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
dead_char = 0;
|
|
||||||
}
|
}
|
||||||
|
dead_char = 0;
|
||||||
}
|
}
|
||||||
NewMsg.hwnd = InMsg.hwnd;
|
NewMsg.hwnd = InMsg.hwnd;
|
||||||
NewMsg.wParam = wp[0];
|
NewMsg.wParam = wp[0];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue