Revision: 6438
Author: nogu.dev
Date: Sat Jun 12 21:14:57 2010
Log: * qt4/chardict/qt4.cpp
  - (KUimCharDict::slotCharSelected):
    Replace double quote with single one for efficiency.
http://code.google.com/p/uim/source/detail?r=6438

Modified:
 /trunk/qt4/chardict/qt4.cpp

=======================================
--- /trunk/qt4/chardict/qt4.cpp Tue May  4 05:58:44 2010
+++ /trunk/qt4/chardict/qt4.cpp Sat Jun 12 21:14:57 2010
@@ -246,5 +246,5 @@
 {
     m_charLineEdit->setText( m_charLineEdit->text() + c );
     uim_helper_send_message( uim_fd,
-        ( "commit_string\n" + c + "\n" ).toUtf8().data() );
-}
+        ( "commit_string\n" + c + '\n' ).toUtf8().data() );
+}

Reply via email to