[uim-commit] r1258 - branches/0.4/qt

ekato at freedesktop.org ekato at freedesktop.org
Sun Aug 21 13:44:30 EST 2005


Author: ekato
Date: 2005-08-20 20:44:28 -0700 (Sat, 20 Aug 2005)
New Revision: 1258

Modified:
   branches/0.4/qt/immodule-qhelpermanager.cpp
Log:
* qt/immodule-qhelpermanager.cpp : Backport changes in r1255 from
  trunk.


Modified: branches/0.4/qt/immodule-qhelpermanager.cpp
===================================================================
--- branches/0.4/qt/immodule-qhelpermanager.cpp	2005-08-21 03:43:19 UTC (rev 1257)
+++ branches/0.4/qt/immodule-qhelpermanager.cpp	2005-08-21 03:44:28 UTC (rev 1258)
@@ -221,7 +221,7 @@
 void QUimHelperManager::update_prop_list_cb( void *ptr, const char *str )
 {
     QUimInputContext *ic = ( QUimInputContext* ) ptr;
-    if ( ic != focusedInputContext )
+    if ( ic != focusedInputContext || disableFocusedContext )
         return;
 
     QString msg = "prop_list_update\ncharset=UTF-8\n";
@@ -233,7 +233,7 @@
 void QUimHelperManager::update_prop_label_cb( void *ptr, const char *str )
 {
     QUimInputContext *ic = ( QUimInputContext* ) ptr;
-    if ( ic != focusedInputContext )
+    if ( ic != focusedInputContext || disableFocusedContext )
         return;
 
     QString msg = "prop_label_update\ncharset=UTF-8\n";



More information about the uim-commit mailing list