From 97c269ad379d7001d067757e556cbd0a7c30240c Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Wed, 4 Jan 2012 16:54:04 +0800 Subject: fixes ChewingParser2::in_chewing_scheme --- src/storage/pinyin_parser2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/storage/pinyin_parser2.cpp b/src/storage/pinyin_parser2.cpp index 45138da..932a8eb 100644 --- a/src/storage/pinyin_parser2.cpp +++ b/src/storage/pinyin_parser2.cpp @@ -822,6 +822,7 @@ bool ChewingParser2::in_chewing_scheme(const char key, const char ** symbol) if (search_chewing_tones(m_tone_table, key, &tone)) { if (symbol) *symbol = chewing_tone_table[tone]; + return true; } return false; -- cgit