[uim-commit] r1008 - in branches/r5rs: . uim

tkng at freedesktop.org tkng at freedesktop.org
Fri Jul 22 14:16:20 EST 2005


Author: tkng
Date: 2005-07-21 21:16:17 -0700 (Thu, 21 Jul 2005)
New Revision: 1008

Modified:
   branches/r5rs/
   branches/r5rs/uim/scim.cpp
Log:
 r1005 at t42 (orig r1004):  tkng | 2005-07-22 07:08:40 +0900
 * uim/scim.cpp: Replaced all error message output to stderr from stdout.
 



Property changes on: branches/r5rs
___________________________________________________________________
Name: svk:merge
   - fb73e508-85ea-0310-95c3-a85c473e0941:/trunk:993
   + fb73e508-85ea-0310-95c3-a85c473e0941:/trunk:1004

Modified: branches/r5rs/uim/scim.cpp
===================================================================
--- branches/r5rs/uim/scim.cpp	2005-07-22 02:52:42 UTC (rev 1007)
+++ branches/r5rs/uim/scim.cpp	2005-07-22 04:16:17 UTC (rev 1008)
@@ -431,7 +431,7 @@
 
 static void cb_commit( IMEngineInstanceBase *instance, const WideString &wstr )
 {
-    fprintf(stdout, "cb_commit\n");
+    fprintf(stderr, "cb_commit\n");
     SCIMContext *ic = static_cast<SCIMContext*>(instance->get_frontend_data());
     if ( !ic )
     {
@@ -449,7 +449,7 @@
 
 static void cb_preedit_update( IMEngineInstanceBase *instance, const WideString &wstr, const AttributeList &attr )
 {    
-    fprintf(stdout, "cb_preedit_update : preedit_str = [%s]\n", WideStr_to_CStr(wstr));
+    fprintf(stderr, "cb_preedit_update : preedit_str = [%s]\n", WideStr_to_CStr(wstr));
 
     SCIMContext *ic = static_cast<SCIMContext*>(instance->get_frontend_data());
     if ( !ic )
@@ -466,7 +466,7 @@
 }
 static void cb_preedit_hide( IMEngineInstanceBase *instance )
 {
-    fprintf(stdout, "cb_preedit_hide\n");
+    fprintf(stderr, "cb_preedit_hide\n");
 
     SCIMContext *ic = static_cast<SCIMContext*>(instance->get_frontend_data());
     if ( !ic )
@@ -481,7 +481,7 @@
 }
 static void cb_preedit_caret( IMEngineInstanceBase *instance, int caret )
 {
-    fprintf(stdout, "cb_preedit_caret\n");
+    fprintf(stderr, "cb_preedit_caret\n");
 
     SCIMContext *ic = static_cast<SCIMContext*>(instance->get_frontend_data());
     if ( !ic )
@@ -497,7 +497,7 @@
 }
 static void cb_lookup_update( IMEngineInstanceBase *instance, const LookupTable &table )
 {
-    fprintf(stdout, "cb_lookup_update\n");
+    fprintf(stderr, "cb_lookup_update\n");
 
     SCIMContext *ic = static_cast<SCIMContext*>(instance->get_frontend_data());
     if ( !ic )
@@ -508,11 +508,11 @@
 }
 static void cb_lookup_show( IMEngineInstanceBase *instance )
 {
-    fprintf(stdout, "cb_lookup_show\n");
+    fprintf(stderr, "cb_lookup_show\n");
 }
 static void cb_lookup_hide( IMEngineInstanceBase *instance )
 {
-    fprintf(stdout, "cb_lookup_hide\n");
+    fprintf(stderr, "cb_lookup_hide\n");
 }
 
 static void



More information about the uim-commit mailing list