summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/storage/chewing_key.cpp3
-rw-r--r--src/storage/chewing_key.h6
2 files changed, 6 insertions, 3 deletions
diff --git a/src/storage/chewing_key.cpp b/src/storage/chewing_key.cpp
index 26a3642..735a2f0 100644
--- a/src/storage/chewing_key.cpp
+++ b/src/storage/chewing_key.cpp
@@ -96,6 +96,9 @@ gchar * _ChewingKey::get_chewing_string() {
if (CHEWING_ZERO_TONE == m_tone) {
return g_strdup(item.m_zhuyin_str);
+ } else if (CHEWING_1 == m_tone) {
+ /* for first tone, usually not display it. */
+ return g_strdup(item.m_zhuyin_str);
} else {
return g_strdup_printf("%s%s", item.m_zhuyin_str,
chewing_tone_table[m_tone]);
diff --git a/src/storage/chewing_key.h b/src/storage/chewing_key.h
index 8c6ef8d..d6bcc19 100644
--- a/src/storage/chewing_key.h
+++ b/src/storage/chewing_key.h
@@ -66,11 +66,11 @@ public:
/* Note: the return value should be freed by g_free. */
gchar * get_pinyin_string();
- gchar * get_luoma_pinyin_string();
- gchar * get_secondary_zhuyin_string();
gchar * get_shengmu_string();
gchar * get_yunmu_string();
- gchar * get_chewing_string();
+ gchar * get_zhuyin_string();
+ gchar * get_luoma_pinyin_string();
+ gchar * get_secondary_zhuyin_string();
};
typedef struct _ChewingKey ChewingKey;