Forgot to rename KeyActionType to keyActionType which I done now.

This commit is contained in:
László Monda
2016-04-08 23:41:47 +02:00
parent 7d17cba390
commit a3b83dfb36
9 changed files with 25 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ class SwitchKeymapAction extends KeyAction {
keymapId: number;
_fromJsObject(jsObject: any): SwitchKeymapAction {
this.assertKeyActionType(jsObject, KeyActionType.SwitchKeymapAction, 'SwitchKeymapAction');
this.assertKeyActionType(jsObject, keyActionType.SwitchKeymapAction, 'SwitchKeymapAction');
this.keymapId = jsObject.keymapId;
return this;
}
@@ -17,7 +17,7 @@ class SwitchKeymapAction extends KeyAction {
_toJsObject(): any {
return {
keyActionType: KeyActionType.SwitchKeymapAction,
keyActionType: keyActionType.SwitchKeymapAction,
keymapId: this.keymapId
};
}