Remove remnants of the old code.

This commit is contained in:
Dmitry Timoshkov 2003-08-05 18:25:47 +00:00 committed by Alexandre Julliard
parent 767070203d
commit 28f8cf29fb
1 changed files with 0 additions and 4 deletions

View File

@ -990,10 +990,6 @@ void X11DRV_KeyEvent( HWND hwnd, XKeyEvent *event )
XIC xic = X11DRV_get_ic( hwnd );
DWORD event_time = event->time - X11DRV_server_startticks;
/* this allows support for dead keys */
if ((event->keycode >> 8) == 0x10)
event->keycode=(event->keycode & 0xff);
wine_tsx11_lock();
if (xic)
ascii_chars = XmbLookupString(xic, event, Str, sizeof(Str), &keysym, NULL);