diff options
author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-23 14:54:52 +0800 |
---|---|---|
committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-23 14:54:52 +0800 |
commit | 4aff5583f058796a8bc233e6d391a82f2a0dbfe0 (patch) | |
tree | 38c768c024afe56287cb8998e7c4fe175e781937 | |
parent | 450003e4be40a802c95adeb7d616d577664c74bf (diff) | |
download | ibus-4aff5583f058796a8bc233e6d391a82f2a0dbfe0.tar.gz ibus-4aff5583f058796a8bc233e6d391a82f2a0dbfe0.tar.xz ibus-4aff5583f058796a8bc233e6d391a82f2a0dbfe0.zip |
Fix typo.
-rw-r--r-- | panel/panel.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/panel/panel.py b/panel/panel.py index 4a5c68c..6ec6ffb 100644 --- a/panel/panel.py +++ b/panel/panel.py @@ -68,11 +68,10 @@ class Panel(ibus.PanelBase): def update_preedit(self, text, attrs, cursor_pos, visible): self.__candidate_panel.update_preedit(text, attrs, cursor_pos, visible) - def show_preedit_string(self): + def show_preedit(self): self.__candidate_panel.show_preedit() - def hide_preedit_string(self): - print "hide preedit" + def hide_preedit(self): self.__candidate_panel.hide_preedit() def update_aux_string(self, text, attrs, visible): |