diff options
Diffstat (limited to 'deskutils/wmpinboard/files/patch-xmisc.c')
-rw-r--r-- | deskutils/wmpinboard/files/patch-xmisc.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deskutils/wmpinboard/files/patch-xmisc.c b/deskutils/wmpinboard/files/patch-xmisc.c new file mode 100644 index 000000000000..4987c8d2a19a --- /dev/null +++ b/deskutils/wmpinboard/files/patch-xmisc.c @@ -0,0 +1,22 @@ +--- src/xmisc.c.orig 2009-05-27 17:03:25.000000000 +0400 ++++ src/xmisc.c 2009-05-27 16:42:40.000000000 +0400 +@@ -204,7 +204,7 @@ + return; + } + +- if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, 0) || !xim_styles) { ++ if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles) { + XCloseIM(xim); + #ifdef DEBUG_IC + fprintf(stderr, "Input method doesn't support any style.\n"); +@@ -258,7 +258,7 @@ + } + + InputContext = XCreateIC(xim, XNInputStyle, input_style, +- XNClientWindow, win, XNFocusWindow, win, 0); ++ XNClientWindow, win, XNFocusWindow, win, NULL); + + if (!InputContext) { + XCloseIM(xim); + + |