From c34f87b345d762882c265a638d306f10b21d4cf8 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 21 May 2012 15:34:06 +0800 Subject: rename compat to compact --- src/pinyin.cpp | 2 ++ src/storage/phrase_index.cpp | 2 +- src/storage/phrase_index.h | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/pinyin.cpp b/src/pinyin.cpp index c028dc0..eb3dde0 100644 --- a/src/pinyin.cpp +++ b/src/pinyin.cpp @@ -190,6 +190,8 @@ bool pinyin_save(pinyin_context_t * context){ if (!context->m_modified) return false; + context->m_phrase_index->compact(); + MemoryChunk * oldchunk = new MemoryChunk; MemoryChunk * newlog = new MemoryChunk; diff --git a/src/storage/phrase_index.cpp b/src/storage/phrase_index.cpp index 39abeee..ad7c60c 100644 --- a/src/storage/phrase_index.cpp +++ b/src/storage/phrase_index.cpp @@ -530,7 +530,7 @@ int SubPhraseIndex::get_range(/* out */ PhraseIndexRange & range){ return ERROR_OK; } -bool FacadePhraseIndex::compat(){ +bool FacadePhraseIndex::compact(){ for ( size_t index = 0; index < PHRASE_INDEX_LIBRARY_COUNT; ++index) { SubPhraseIndex * sub_phrase = m_sub_phrase_indices[index]; if ( !sub_phrase ) diff --git a/src/storage/phrase_index.h b/src/storage/phrase_index.h index bb3f84b..4deac16 100644 --- a/src/storage/phrase_index.h +++ b/src/storage/phrase_index.h @@ -530,13 +530,13 @@ public: bool merge(guint8 phrase_index, MemoryChunk * log); /** - * FacadePhraseIndex::compat: - * @returns: whether the compat operation is successful. + * FacadePhraseIndex::compact: + * @returns: whether the compact operation is successful. * * Compat all sub phrase index memory usage. * */ - bool compat(); + bool compact(); /** * FacadePhraseIndex::get_sub_phrase_range: -- cgit