summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-08-25 12:55:10 +0000
committerKurt Zenker <kz@openoffice.org>2003-08-25 12:55:10 +0000
commitd8a0d3560687cd6a340c9d0627f949777af1aeba (patch)
tree117b4f463ac416116b20cab0a7b21032d11dd911 /vcl
parent613e78f118a217b44b9190f7ab6124dc71316ec7 (diff)
INTEGRATION: CWS vcl15 (1.23.68); FILE MERGED
2003/07/11 09:56:09 pl 1.23.68.1: #110563# activate workaround for KeyPress/Release failure of IM for all IMs
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/source/app/i18n_im.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/vcl/unx/source/app/i18n_im.cxx b/vcl/unx/source/app/i18n_im.cxx
index 4d544ccb2aca..eebdc70b2082 100644
--- a/vcl/unx/source/app/i18n_im.cxx
+++ b/vcl/unx/source/app/i18n_im.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: i18n_im.cxx,v $
*
- * $Revision: 1.24 $
+ * $Revision: 1.25 $
*
- * last change: $Author: hjs $ $Date: 2003-08-18 15:15:07 $
+ * last change: $Author: kz $ $Date: 2003-08-25 13:55:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -524,15 +524,11 @@ SalI18N_InputMethod::FilterEvent( XEvent *pEvent, XLIB_Window window )
Bool bFilterEvent = XFilterEvent (pEvent, window);
- if (! IMServerKinput2())
- return bFilterEvent;
if (pEvent->type != XLIB_KeyPress && pEvent->type != KeyRelease)
return bFilterEvent;
- if (mbMultiLingual)
- return bFilterEvent;
/*
- * fix kinput2 key release handling
+ * fix broken key release handling of some IMs
*/
XKeyEvent* pKeyEvent = &(pEvent->xkey);
static XKeyEventOp maLastKeyPress;