This commit refactors ctrlKey to ctrl_key wherever possible.

This commit is contained in:
Arthur Marble 2016-09-17 01:10:12 -05:00
parent 83f687a7be
commit 77170a14bc
6 changed files with 10 additions and 10 deletions

View file

@ -62,7 +62,7 @@ impl TouchEvent {
touches: &TouchList,
changed_touches: &TouchList,
target_touches: &TouchList,
ctrlKey: bool,
ctrl_key: bool,
altKey: bool,
shiftKey: bool,
metaKey: bool) -> Root<TouchEvent> {
@ -71,7 +71,7 @@ impl TouchEvent {
bool::from(canBubble),
bool::from(cancelable),
view, detail);
ev.ctrl_key.set(ctrlKey);
ev.ctrl_key.set(ctrl_key);
ev.alt_key.set(altKey);
ev.shift_key.set(shiftKey);
ev.meta_key.set(metaKey);