summaryrefslogtreecommitdiffstats
path: root/src/zhuyin.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2017-05-10 16:03:11 +0800
committerPeng Wu <alexepico@gmail.com>2017-05-10 16:03:11 +0800
commite7bb5f219a4290cae22942330fca11fc2d73f262 (patch)
tree18309f8af61601348ea1a3631457f544f1e7b303 /src/zhuyin.cpp
parent214476b848cc26d25fae113724e87d659045d2d8 (diff)
downloadlibpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.tar.gz
libpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.tar.xz
libpinyin-e7bb5f219a4290cae22942330fca11fc2d73f262.zip
fixes compile
Diffstat (limited to 'src/zhuyin.cpp')
-rw-r--r--src/zhuyin.cpp10
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;
};