Revision: 6315
Author: nogu.dev
Date: Fri Apr 9 19:44:46 2010
Log: * qt4/immodule/caretstateindicator.cpp
* qt4/immodule/caretstateindicator.h
- (CaretStateIndicator::update): Rename to updateLabels()
http://code.google.com/p/uim/source/detail?r=6315
Modified:
/trunk/qt4/immodule/caretstateindicator.cpp
/trunk/qt4/immodule/caretstateindicator.h
=======================================
--- /trunk/qt4/immodule/caretstateindicator.cpp Sat Mar 27 22:33:48 2010
+++ /trunk/qt4/immodule/caretstateindicator.cpp Fri Apr 9 19:44:46 2010
@@ -74,7 +74,7 @@
bool isModeOn
= uim_scm_symbol_value_bool("bridge-show-input-state-mode-on?");
if (isEnabled && !(isMode && !isModeOn)) {
- update(str);
+ updateLabels(str);
if (!isMode) {
int time = uim_scm_symbol_value_int(
"bridge-show-input-state-time-length");
@@ -87,7 +87,7 @@
}
}
-void CaretStateIndicator::update(const QString &str)
+void CaretStateIndicator::updateLabels(const QString &str)
{
if (!str.isEmpty()) {
QStringList lines = str.split('\n', QString::SkipEmptyParts);
=======================================
--- /trunk/qt4/immodule/caretstateindicator.h Mon Mar 22 07:41:15 2010
+++ /trunk/qt4/immodule/caretstateindicator.h Fri Apr 9 19:44:46 2010
@@ -50,7 +50,7 @@
static const int SPACING;
private:
- void update(const QString &str);
+ void updateLabels(const QString &str);
void setTimeout(int second);
bool eventFilter(QObject *obj, QEvent *event);
QList<QLabel *> m_labelList;
--
To unsubscribe, reply using "remove me" as the subject.