aboutsummaryrefslogtreecommitdiff
path: root/japanese/scim-uim/files/extra-patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/scim-uim/files/extra-patch-aa')
-rw-r--r--japanese/scim-uim/files/extra-patch-aa50
1 files changed, 0 insertions, 50 deletions
diff --git a/japanese/scim-uim/files/extra-patch-aa b/japanese/scim-uim/files/extra-patch-aa
deleted file mode 100644
index 150358b6c258..000000000000
--- a/japanese/scim-uim/files/extra-patch-aa
+++ /dev/null
@@ -1,50 +0,0 @@
---- src/scim_uim_imengine.cpp.orig 2005-08-08 12:08:34.000000000 +0900
-+++ src/scim_uim_imengine.cpp 2008-05-18 16:02:49.000000000 +0900
-@@ -33,6 +33,7 @@
- #endif
-
- #include <scim.h>
-+#include <uim-util.h>
- #include "scim_uim_imengine.h"
-
- #define scim_module_init uim_LTX_scim_module_init
-@@ -823,39 +824,6 @@
- }
- }
-
--void
--UIMInstance::uim_surrounding_text_request_cb (void *ptr)
--{
-- UIMInstance *this_ptr = static_cast <UIMInstance *> (ptr);
-- if (this_ptr) {
--
-- SCIM_DEBUG_IMENGINE(2) << "uim_surrounding_text_request_cb.\n";
--
-- WideString wstr;
-- int cursor;
--
-- if (this_ptr->get_surrounding_text (wstr, cursor)) {
-- String str = utf8_wcstombs (wstr);
-- uim_set_surrounding_text (this_ptr->m_uc, str.c_str (), cursor, wstr.length ());
-- }
-- }
--}
--
--int
--UIMInstance::uim_surrounding_text_delete_cb (void *ptr, int offset, int len)
--{
-- UIMInstance *this_ptr = static_cast <UIMInstance *> (ptr);
-- int ret = -1;
--
-- if (this_ptr) {
-- SCIM_DEBUG_IMENGINE(2) << "uim_surrounding_text_delete_cb.\n";
--
-- if (this_ptr->delete_surrounding_text (offset, len))
-- ret = 0;
-- }
--
-- return ret;
--}
- /*
- vi:ts=4:nowrap:ai:expandtab
- */