Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: ibus/component.py

Issue 1702015: Support engine specific hotkey. (Closed) Base URL: ssh://git@chromiumos-git/ibus.git
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bus/ibusimpl.c ('k') | ibus/enginedesc.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ibus/component.py
diff --git a/ibus/component.py b/ibus/component.py
index 47db7305d57146bcf0a141dbb144c0ded4f8e552..a662b706c4a1ce9007117f3fe5acda7a46287282 100644
--- a/ibus/component.py
+++ b/ibus/component.py
@@ -90,8 +90,8 @@ class Component(Serializable):
def add_observed_path(self, path):
self.__observed_paths.append(ObservedPath(path))
- def add_engine(self, name="", longname="", description="", language="", license="", author="", icon="", layout=""):
- engine = EngineDesc(name, longname, description, language, license, author, icon, layout)
+ def add_engine(self, name="", longname="", description="", language="", license="", author="", icon="", layout="", hotkeys=""):
+ engine = EngineDesc(name, longname, description, language, license, author, icon, layout, hotkeys)
self.__engines.append(engine)
def serialize(self, struct):
« no previous file with comments | « bus/ibusimpl.c ('k') | ibus/enginedesc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698