diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-20 11:24:26 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-20 11:24:26 +0800 |
| commit | e06cde77fd4fc60073405e9e752261a92518b18e (patch) | |
| tree | 0267f064f2fd0f1cbadb3ee4a935c1c3c21f53f8 /ibus/interface | |
| parent | 2b3142d0a30d3324c2de29dd0ba8d09cca1c1b57 (diff) | |
| download | ibus-e06cde77fd4fc60073405e9e752261a92518b18e.tar.gz ibus-e06cde77fd4fc60073405e9e752261a92518b18e.tar.xz ibus-e06cde77fd4fc60073405e9e752261a92518b18e.zip | |
Fix typos.
Diffstat (limited to 'ibus/interface')
| -rw-r--r-- | ibus/interface/iengine.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ibus/interface/iengine.py b/ibus/interface/iengine.py index 3f800fe..5ccadcf 100644 --- a/ibus/interface/iengine.py +++ b/ibus/interface/iengine.py @@ -99,40 +99,40 @@ class IEngine(dbus.service.Object): def UpdatePreedit(self, text, attrs, cursor_pos, visible): pass @signal() - def ShowPreedit(): pass + def ShowPreedit(self): pass @signal() - def HidePreedit(): pass + def HidePreedit(self): pass @signal(signature="svb") def UpdateAuxString(self, text, attrs, visible): pass @signal() - def ShowAuxString(): pass + def ShowAuxString(self): pass @signal() - def HideAuxString(): pass + def HideAuxString(self): pass @signal(signature="vb") def UpdateLookupTable(self, lookup_table, visible): pass @signal() - def ShowLookupTable(): pass + def ShowLookupTable(self): pass @signal() - def HideLookupTable(): pass + def HideLookupTable(self): pass @signal() - def PageUpLookupTable(): pass + def PageUpLookupTable(self): pass @signal() - def PageDownLookupTable(): pass + def PageDownLookupTable(self): pass @signal() - def CursorUpLookupTable(): pass + def CursorUpLookupTable(self): pass @signal() - def CursorDownLookupTable(): pass + def CursorDownLookupTable(self): pass @signal(signature="v") def RegisterProperties(self, props): pass |
