winex11.drv: Replace no-longer-existent VK_A, VK_Z, VK_0, and VK_9 constants.

This commit is contained in:
Ken Thomases 2006-11-17 14:46:31 -06:00 committed by Alexandre Julliard
parent 8c768fb437
commit 0dee5eb160
1 changed files with 2 additions and 2 deletions

View File

@ -1672,8 +1672,8 @@ void X11DRV_InitKeyboard(void)
for (i = 0; (i < keysyms_per_keycode) && (!vkey); i++)
{
keysym = XLookupKeysym(&e2, i);
if ((keysym >= VK_0 && keysym <= VK_9)
|| (keysym >= VK_A && keysym <= VK_Z)) {
if ((keysym >= XK_0 && keysym <= XK_9)
|| (keysym >= XK_A && keysym <= XK_Z)) {
vkey = keysym;
}
}