~ubuntu-branches/ubuntu/karmic/ibus/karmic-updates

« back to all changes in this revision

Viewing changes to ibus/engine.py

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-06-13 11:39:05 UTC
  • mfrom: (1.1.3 upstream) (6.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090613113905-0mfi5hhoz8w9y6k2
Tags: 1.1.0.20090612-1
* new upstream release.
* Fix "python-ibus should depends on iso-codes" (Closes: #532163)
* debian/libibus0.symbols: update symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
    def CursorDown(self):
180
180
        return self.__engine.cursor_down()
181
181
 
 
182
    def CandidateClicked(self, index, button, state):
 
183
        return self.__engine.candidate_clicked(index, button, state)
 
184
 
182
185
    def Enable(self):
183
186
        return self.__engine.enable()
184
187