summaryrefslogtreecommitdiff
path: root/inputmethod/scim-python/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'inputmethod/scim-python/patches/patch-ab')
-rw-r--r--inputmethod/scim-python/patches/patch-ab33
1 files changed, 0 insertions, 33 deletions
diff --git a/inputmethod/scim-python/patches/patch-ab b/inputmethod/scim-python/patches/patch-ab
deleted file mode 100644
index 8bc2f447a00..00000000000
--- a/inputmethod/scim-python/patches/patch-ab
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2013/03/22 13:29:42 obache Exp $
-
-* let to cast with appropriate type.
-
---- src/scim-python-engine.cpp.orig 2008-07-11 04:16:15.000000000 +0000
-+++ src/scim-python-engine.cpp
-@@ -621,7 +621,7 @@ PyIMEngine::py_update_preedit_string (Py
-
- unistr = g_utf16_to_ucs4 (str, size, NULL, NULL, NULL);
-
-- self->engine.update_preedit_string (WideString ((wchar_t *)unistr),
-+ self->engine.update_preedit_string (WideString ((scim::ucs4_t *)unistr),
- Attributes_FromTupleOrList (pAttrs));
- g_free (unistr);
-
-@@ -659,7 +659,7 @@ PyIMEngine::py_update_aux_string (PyIMEn
- return NULL;
-
- unistr = g_utf16_to_ucs4 (str, size, NULL, NULL, NULL);
-- self->engine.update_aux_string (WideString ((wchar_t *)unistr),
-+ self->engine.update_aux_string (WideString ((scim::ucs4_t *)unistr),
- Attributes_FromTupleOrList (pAttrs));
- g_free (unistr);
- #endif
-@@ -713,7 +713,7 @@ PyIMEngine::py_commit_string (PyIMEngine
- return NULL;
-
- unistr = g_utf16_to_ucs4 (str, size, NULL, NULL, NULL);
-- self->engine.commit_string (WideString ((wchar_t *)unistr));
-+ self->engine.commit_string (WideString ((scim::ucs4_t *)unistr));
- g_free (unistr);
- #endif
-