summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-04-18 14:13:35 +0800
committerPeng Wu <alexepico@gmail.com>2014-04-18 14:13:35 +0800
commit4a72d7e978f6348d93fe6a3c0c0916cc9ff882c9 (patch)
tree89ad956f191dde11cf9ef3383e8c64491d7b7334
parentb6e80e9831529cc4f7bcca45dafff8d807fd6423 (diff)
downloadibus-libzhuyin-4a72d7e978f6348d93fe6a3c0c0916cc9ff882c9.tar.gz
ibus-libzhuyin-4a72d7e978f6348d93fe6a3c0c0916cc9ff882c9.tar.xz
ibus-libzhuyin-4a72d7e978f6348d93fe6a3c0c0916cc9ff882c9.zip
rename populateCandidates to fillLookupTableByPage
-rw-r--r--src/ZYZBuiltinSymbolSection.cc2
-rw-r--r--src/ZYZBuiltinSymbolSection.h2
-rw-r--r--src/ZYZPhoneticSection.cc2
-rw-r--r--src/ZYZPhoneticSection.h2
-rw-r--r--src/ZYZSymbolSection.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/ZYZBuiltinSymbolSection.cc b/src/ZYZBuiltinSymbolSection.cc
index dee1506..189f937 100644
--- a/src/ZYZBuiltinSymbolSection.cc
+++ b/src/ZYZBuiltinSymbolSection.cc
@@ -53,7 +53,7 @@ BuiltinSymbolSection::initCandidates (const String & lookup)
}
bool
-BuiltinSymbolSection::populateCandidates ()
+BuiltinSymbolSection::fillLookupTableByPage ()
{
/* clear lookup table. */
LookupTable & lookup_table = getLookupTable ();
diff --git a/src/ZYZBuiltinSymbolSection.h b/src/ZYZBuiltinSymbolSection.h
index 2ec3dbf..5b60d4d 100644
--- a/src/ZYZBuiltinSymbolSection.h
+++ b/src/ZYZBuiltinSymbolSection.h
@@ -36,7 +36,7 @@ public:
public:
virtual bool initCandidates (const String & lookup);
- virtual bool populateCandidates ();
+ virtual bool fillLookupTableByPage ();
virtual int selectCandidate (guint index);
protected:
diff --git a/src/ZYZPhoneticSection.cc b/src/ZYZPhoneticSection.cc
index 7f8438e..aedbd31 100644
--- a/src/ZYZPhoneticSection.cc
+++ b/src/ZYZPhoneticSection.cc
@@ -45,7 +45,7 @@ PhoneticSection::initCandidates (zhuyin_instance_t * instance,
}
bool
-PhoneticSection::populateCandidates ()
+PhoneticSection::fillLookupTableByPage ()
{
/* clear lookup table. */
LookupTable & lookup_table = getLookupTable ();
diff --git a/src/ZYZPhoneticSection.h b/src/ZYZPhoneticSection.h
index 4901683..f4d9702 100644
--- a/src/ZYZPhoneticSection.h
+++ b/src/ZYZPhoneticSection.h
@@ -36,7 +36,7 @@ public:
public:
virtual bool initCandidates (zhuyin_instance_t * instance,
int offset);
- virtual bool populateCandidates ();
+ virtual bool fillLookupTableByPage ();
virtual int selectCandidate (guint index);
protected:
diff --git a/src/ZYZSymbolSection.h b/src/ZYZSymbolSection.h
index df26667..2f6d6ca 100644
--- a/src/ZYZSymbolSection.h
+++ b/src/ZYZSymbolSection.h
@@ -34,7 +34,7 @@ public:
public:
virtual bool initCandidates (const String & hint) = 0;
- virtual bool populateCandidates () = 0;
+ virtual bool fillLookupTableByPage () = 0;
virtual int selectCandidate (guint index) = 0;
public: