summaryrefslogtreecommitdiffstats
path: root/src/storage/facade_phrase_table3.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-01-27 16:02:26 +0800
committerPeng Wu <alexepico@gmail.com>2016-01-27 16:02:26 +0800
commit82e482b394d08ee2001cfbccc8fe72cf8fa9e438 (patch)
tree6e3e1f0e86f6961791076fe057e75e785fef1c0c /src/storage/facade_phrase_table3.h
parentb564ca7a9266364f538ec548b02c1eee64c4d373 (diff)
downloadlibpinyin-82e482b394d08ee2001cfbccc8fe72cf8fa9e438.tar.gz
libpinyin-82e482b394d08ee2001cfbccc8fe72cf8fa9e438.tar.xz
libpinyin-82e482b394d08ee2001cfbccc8fe72cf8fa9e438.zip
rename load/store to load_db/store_db methods
Diffstat (limited to 'src/storage/facade_phrase_table3.h')
-rw-r--r--src/storage/facade_phrase_table3.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/storage/facade_phrase_table3.h b/src/storage/facade_phrase_table3.h
index f7b3c80..b84dc01 100644
--- a/src/storage/facade_phrase_table3.h
+++ b/src/storage/facade_phrase_table3.h
@@ -84,7 +84,7 @@ public:
}
if (user_filename) {
m_user_phrase_table = new PhraseLargeTable3;
- result = m_user_phrase_table->load
+ result = m_user_phrase_table->load_db
(user_filename) || result;
}
return result;
@@ -93,7 +93,7 @@ public:
bool store(const char * new_user_filename) {
if (NULL == m_user_phrase_table)
return false;
- return m_user_phrase_table->store(new_user_filename);
+ return m_user_phrase_table->store_db(new_user_filename);
}
/**