Add a workaround to avoid a fatal confliction with qt32.

Reviewed by:	Choe Hwanjin <krisna@kldp.org> (author)
Approved by:	portmgr (will)
This commit is contained in:
Hye-Shik Chang 2003-09-19 04:45:21 +00:00
parent c3ae907f54
commit e93136e363
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=89065
2 changed files with 21 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= nabi PORTNAME= nabi
PORTVERSION= 0.4 PORTVERSION= 0.4
PORTREVISION= 1
CATEGORIES= korean gnome x11 CATEGORIES= korean gnome x11
MASTER_SITES= http://download.kldp.net/nabi/ MASTER_SITES= http://download.kldp.net/nabi/

View file

@ -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;
}