summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2013-04-10 15:58:02 +0800
committerPeng Wu <alexepico@gmail.com>2013-04-10 15:58:02 +0800
commit4f9911da462c0734af9e25a49bb20cdcfea8d4fb (patch)
tree362e1a818579b405408a652aebc6a5e9f7f99b52 /src
parent66d1f8c42f6cc8715402eeffe113f3ba4a65dcb9 (diff)
downloadlibpinyin-4f9911da462c0734af9e25a49bb20cdcfea8d4fb.tar.gz
libpinyin-4f9911da462c0734af9e25a49bb20cdcfea8d4fb.tar.xz
libpinyin-4f9911da462c0734af9e25a49bb20cdcfea8d4fb.zip
update table_info.cpp
Diffstat (limited to 'src')
-rw-r--r--src/storage/table_info.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/storage/table_info.cpp b/src/storage/table_info.cpp
index 5cd0ca4..1b8ae7a 100644
--- a/src/storage/table_info.cpp
+++ b/src/storage/table_info.cpp
@@ -45,13 +45,13 @@ SystemTableInfo::SystemTableInfo() {
size_t i;
for (i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
- pinyin_table_info_t * tableinfo = &m_table_info[i];
+ pinyin_table_info_t * table_info = &m_table_info[i];
- tableinfo->m_dict_index = i;
- tableinfo->m_table_filename = NULL;
- tableinfo->m_system_filename = NULL;
- tableinfo->m_user_filename = NULL;
- tableinfo->m_file_type = NOT_USED;
+ table_info->m_dict_index = i;
+ table_info->m_table_filename = NULL;
+ table_info->m_system_filename = NULL;
+ table_info->m_user_filename = NULL;
+ table_info->m_file_type = NOT_USED;
}
}
@@ -66,16 +66,16 @@ void SystemTableInfo::reset() {
size_t i;
for (i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
- pinyin_table_info_t * tableinfo = &m_table_info[i];
+ pinyin_table_info_t * table_info = &m_table_info[i];
- g_free((gchar *)tableinfo->m_table_filename);
- tableinfo->m_table_filename = NULL;
- g_free((gchar *)tableinfo->m_system_filename);
- tableinfo->m_system_filename = NULL;
- g_free((gchar *)tableinfo->m_user_filename);
- tableinfo->m_user_filename = NULL;
+ g_free((gchar *)table_info->m_table_filename);
+ table_info->m_table_filename = NULL;
+ g_free((gchar *)table_info->m_system_filename);
+ table_info->m_system_filename = NULL;
+ g_free((gchar *)table_info->m_user_filename);
+ table_info->m_user_filename = NULL;
- tableinfo->m_file_type = NOT_USED;
+ table_info->m_file_type = NOT_USED;
}
}
@@ -85,13 +85,13 @@ void SystemTableInfo::postfix_tables() {
const pinyin_table_info_t * postfix = &reserved_tables[i];
guint8 index = postfix->m_dict_index;
- pinyin_table_info_t * tableinfo = &m_table_info[index];
- assert(tableinfo->m_dict_index == index);
+ pinyin_table_info_t * table_info = &m_table_info[index];
+ assert(table_info->m_dict_index == index);
- tableinfo->m_table_filename = g_strdup(postfix->m_table_filename);
- tableinfo->m_system_filename = g_strdup(postfix->m_system_filename);
- tableinfo->m_user_filename = g_strdup(postfix->m_user_filename);
- tableinfo->m_file_type = postfix->m_file_type;
+ table_info->m_table_filename = g_strdup(postfix->m_table_filename);
+ table_info->m_system_filename = g_strdup(postfix->m_system_filename);
+ table_info->m_user_filename = g_strdup(postfix->m_user_filename);
+ table_info->m_file_type = postfix->m_file_type;
}
}
@@ -163,14 +163,14 @@ bool SystemTableInfo::load(const char * filename) {
continue;
/* save into m_table_info. */
- pinyin_table_info_t * tableinfo = &m_table_info[index];
- assert(index == tableinfo->m_dict_index);
+ pinyin_table_info_t * table_info = &m_table_info[index];
+ assert(index == table_info->m_dict_index);
- tableinfo->m_table_filename = to_string(tablefile);
- tableinfo->m_system_filename = to_string(sysfile);
- tableinfo->m_user_filename = to_string(userfile);
+ table_info->m_table_filename = to_string(tablefile);
+ table_info->m_system_filename = to_string(sysfile);
+ table_info->m_user_filename = to_string(userfile);
- tableinfo->m_file_type = to_file_type(filetype);
+ table_info->m_file_type = to_file_type(filetype);
}
fclose(input);