summaryrefslogtreecommitdiff
path: root/src/imConv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/imConv.c')
-rw-r--r--src/imConv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imConv.c b/src/imConv.c
index c1922a7c..e0015716 100644
--- a/src/imConv.c
+++ b/src/imConv.c
@@ -84,12 +84,12 @@ XPointer
_XimGetLocaleCode (
_Xconst char* encoding_name)
{
- XPointer cvt = _XFree86utf8GetConvByName(encoding_name);
+ XPointer cvt = _Utf8GetConvByName(encoding_name);
if (!cvt && encoding_name) {
int i;
for (i = 0; i < num_substitute; i++)
if (!strcmp(encoding_name, SubstTable[i].encoding_name))
- return _XFree86utf8GetConvByName(SubstTable[i].charset_name);
+ return _Utf8GetConvByName(SubstTable[i].charset_name);
}
return cvt;
}
@@ -298,7 +298,7 @@ _XimLookupWCText(ic, event, buffer, nbytes, keysym, status)
}
int
-_XFree86imLookupUtf8Text(ic, event, buffer, nbytes, keysym, status)
+_XimLookupUTF8Text(ic, event, buffer, nbytes, keysym, status)
Xic ic;
XKeyEvent* event;
char* buffer;