From e93136e3630a195982fa784c68d0fb1553dd6e4d Mon Sep 17 00:00:00 2001 From: Hye-Shik Chang Date: Fri, 19 Sep 2003 04:45:21 +0000 Subject: [PATCH] Add a workaround to avoid a fatal confliction with qt32. Reviewed by: Choe Hwanjin (author) Approved by: portmgr (will) --- korean/nabi/Makefile | 1 + korean/nabi/files/patch-src_ic.c | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 korean/nabi/files/patch-src_ic.c diff --git a/korean/nabi/Makefile b/korean/nabi/Makefile index 642ea5f2d47a..0d243286e58d 100644 --- a/korean/nabi/Makefile +++ b/korean/nabi/Makefile @@ -7,6 +7,7 @@ PORTNAME= nabi PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= korean gnome x11 MASTER_SITES= http://download.kldp.net/nabi/ diff --git a/korean/nabi/files/patch-src_ic.c b/korean/nabi/files/patch-src_ic.c new file mode 100644 index 000000000000..59a186bee04a --- /dev/null +++ b/korean/nabi/files/patch-src_ic.c @@ -0,0 +1,20 @@ +--- src/ic.c.orig Sat Aug 23 14:15:05 2003 ++++ src/ic.c Fri Sep 19 10:47:55 2003 +@@ -1219,7 +1219,7 @@ + * befor commiting the string. but it makes too many flickering + * so I first send commit string and then delete preedit string. + * This makes some problem on gtk2 entry */ +- /* nabi_ic_preedit_clear(ic); */ ++ nabi_ic_preedit_clear(ic); + + list[0] = buf; + ret = XwcTextListToTextProperty(server->display, list, 1, +@@ -1237,7 +1237,7 @@ + XFree(tp.value); + + /* we delete preedit string here */ +- nabi_ic_preedit_clear(ic); ++ /* nabi_ic_preedit_clear(ic); */ + + return True; + }