Revision: 6475
Author: nogu.dev
Date: Wed Jun 23 03:26:55 2010
Log: * qt4/immodule/candidatetablewindow.cpp
  - (CandidateTableWindow::setIndex):
    Override AbstractCandidateWindow::setIndex().
    Call updateLabel() inside this function.
* qt4/immodule/candidatetablewindow.h
  - (CandidateTableWindow): Ditto.
http://code.google.com/p/uim/source/detail?r=6475

Modified:
 /trunk/qt4/immodule/candidatetablewindow.cpp
 /trunk/qt4/immodule/candidatetablewindow.h

=======================================
--- /trunk/qt4/immodule/candidatetablewindow.cpp        Wed Jun 23 03:26:43 2010
+++ /trunk/qt4/immodule/candidatetablewindow.cpp        Wed Jun 23 03:26:55 2010
@@ -297,6 +297,12 @@
     else
         updateLabel();
 }
+
+void CandidateTableWindow::setIndex(int totalIndex)
+{
+    AbstractCandidateWindow::setIndex(totalIndex);
+    updateLabel();
+}

 KeyButton::KeyButton() : m_index(-1)
 {
=======================================
--- /trunk/qt4/immodule/candidatetablewindow.h  Wed Jun 23 03:26:43 2010
+++ /trunk/qt4/immodule/candidatetablewindow.h  Wed Jun 23 03:26:55 2010
@@ -62,6 +62,7 @@
         void setBlockVisible(QLayout *layout, bool visible);
         void setTable();
         void setPage(int page);
+        void setIndex(int totalIndex);

         QGridLayout *lsLayout;
         QGridLayout *rsLayout;

Reply via email to