From 8f5c520633cf1d2d98d09b3b65fc81a741e051eb Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Fri, 25 May 2012 07:54:46 +0000 Subject: [PATCH] scim_immodule: fix some typos SVN revision: 71417 --- legacy/ecore/src/modules/immodules/scim/scim_imcontext.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/ecore/src/modules/immodules/scim/scim_imcontext.cpp b/legacy/ecore/src/modules/immodules/scim/scim_imcontext.cpp index 5b01cbd4c0..d085ec043b 100644 --- a/legacy/ecore/src/modules/immodules/scim/scim_imcontext.cpp +++ b/legacy/ecore/src/modules/immodules/scim/scim_imcontext.cpp @@ -403,7 +403,7 @@ analyze_surrounding_text(Ecore_IMF_Context *ctx) plain_str = evas_textblock_text_markup_to_utf8(NULL, markup_str); if (!plain_str) goto done; - // Convert string from utf8 to unicode + // Convert string from UTF-8 to unicode ustr = eina_unicode_utf8_to_unicode(plain_str, NULL); if (!ustr) goto done; @@ -418,7 +418,7 @@ analyze_surrounding_text(Ecore_IMF_Context *ctx) } } - // Check paragraph separator and carrage return
+ // Check paragraph separator and carriage return
if ((ustr[cursor_pos-1] == 0x2029) || (ustr[cursor_pos-1] == '\n')) { ret = EINA_TRUE; @@ -570,7 +570,7 @@ isf_imf_context_new(void) } /** - * isf_imf_shutdown + * isf_imf_context_shutdown * * It will be called when the scim im module is unloaded by ecore. It will do some * cleanup job.