pkgsrc/x11/qt3-libs/patches/patch-ae
skrll ad3f9a41d8 Update QT3 to 3.2.3.
Far too many new features and bug fixes to list here. Includes a fix for
Hangul (Korean character) handling from Bang Jun-Young <junyoung at netbsd
dot org>. Thanks.

"Better late than never"
2003-12-19 15:43:31 +00:00

16 lines
616 B
Text

$NetBSD: patch-ae,v 1.1 2003/12/19 15:43:31 skrll Exp $
--- src/kernel/qinputcontext_x11.cpp.orig 2003-10-10 10:47:35.000000000 +0900
+++ src/kernel/qinputcontext_x11.cpp 2003-12-15 23:15:04.000000000 +0900
@@ -255,9 +255,8 @@
qDebug( "compose emptied" );
#endif // QT_XIM_DEBUG
- // don't send an empty compose, since we will send an IMEnd with
- // either the correct compose text (or null text if the user has
- // cancelled the compose or deleted all chars).
+ QIMComposeEvent event( QEvent::IMCompose, qic->text, 0, 0 );
+ QApplication::sendEvent(qic->focusWidget, &event);
return 0;
}
}