summaryrefslogtreecommitdiffstats
path: root/src/storage/chewing_key.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-11-15 17:52:28 +0800
committerPeng Wu <alexepico@gmail.com>2011-11-15 17:52:28 +0800
commit3d258a59568cb9d6114b8f80784d94abcb1b7905 (patch)
tree788f902afd1c79ea56f7ba6969fee4bd7a848f3a /src/storage/chewing_key.h
parent4e5e619a20c4d7c9cc1229a2f3e26a7219bf6841 (diff)
downloadlibpinyin-3d258a59568cb9d6114b8f80784d94abcb1b7905.tar.gz
libpinyin-3d258a59568cb9d6114b8f80784d94abcb1b7905.tar.xz
libpinyin-3d258a59568cb9d6114b8f80784d94abcb1b7905.zip
update m_table_index name
Diffstat (limited to 'src/storage/chewing_key.h')
-rw-r--r--src/storage/chewing_key.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/storage/chewing_key.h b/src/storage/chewing_key.h
index 5d708e0..b83b5d7 100644
--- a/src/storage/chewing_key.h
+++ b/src/storage/chewing_key.h
@@ -180,13 +180,13 @@ struct ChewingKey
struct ChewingKeyRest
{
- guint16 m_index; /* the index in pinyin parser table. */
+ guint16 m_table_index; /* the index in pinyin parser table. */
guint16 m_raw_begin; /* the begin of the raw input. */
guint16 m_raw_end; /* the end of the raw input. */
ChewingKeyRest() {
/* the 0th item in pinyin parser table is reserved for invalid. */
- m_index = 0;
+ m_table_index = 0;
m_raw_begin = 0;
m_raw_end = 0;
}