diff options
author | Peng Wu <alexepico@gmail.com> | 2017-05-10 16:03:11 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2017-05-10 16:03:11 +0800 |
commit | e7bb5f219a4290cae22942330fca11fc2d73f262 (patch) | |
tree | 18309f8af61601348ea1a3631457f544f1e7b303 | |
parent | 214476b848cc26d25fae113724e87d659045d2d8 (diff) | |
download | libpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.tar.gz libpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.tar.xz libpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.zip |
fixes compile
-rw-r--r-- | src/zhuyin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zhuyin.cpp b/src/zhuyin.cpp index a98b410..db6796e 100644 --- a/src/zhuyin.cpp +++ b/src/zhuyin.cpp @@ -54,12 +54,12 @@ struct _zhuyin_context_t{ char * m_user_dir; bool m_modified; - SystemTableInfo m_system_table_info; + SystemTableInfo2 m_system_table_info; }; -struct _pinyin_instance_t{ - /* pointer of pinyin_context_t. */ - pinyin_context_t * m_context; +struct _zhuyin_instance_t{ + /* pointer of zhuyin_context_t. */ + zhuyin_context_t * m_context; /* the tokens of phrases before the user input. */ TokenVector m_prefixes; @@ -98,6 +98,6 @@ public: }; struct _import_iterator_t{ - pinyin_context_t * m_context; + zhuyin_context_t * m_context; guint8 m_phrase_index; }; |