Terminate XCreateIC() argument list with NULL instead of just 0.

This commit is contained in:
Marcus Meissner 2005-04-13 15:23:29 +00:00 committed by Alexandre Julliard
parent 042614751c
commit 1b8f8f44a1
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ XIC X11DRV_CreateIC(XIM xim, Display *display, Window win)
XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
XNClientWindow, win, XNClientWindow, win,
XNFocusWindow, win, XNFocusWindow, win,
0); NULL);
wine_tsx11_unlock(); wine_tsx11_unlock();
return xic; return xic;
} }