diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2011-04-11 15:22:52 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2011-04-18 13:05:46 +1000 |
commit | 071a6ac4d0c347aa7fc6efe37f4f6992524d7ef1 (patch) | |
tree | 29c80d5b04ef4ab471ccbdcee7858d4537f505c2 /hw/xnest | |
parent | 91a735328c59db006f0ed52b49e9c59895796c0c (diff) |
input: remove GetKeyboardValuatorEvents, this is now unnecessary.
GetKeyboardValuatorEvents handles NULL valuator masks already, so the
GetKeyboardEvents wrapper is not needed. Rename GKVE to GKE.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'hw/xnest')
-rw-r--r-- | hw/xnest/Events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xnest/Events.c b/hw/xnest/Events.c index 5ff6d210a..5c800860a 100644 --- a/hw/xnest/Events.c +++ b/hw/xnest/Events.c @@ -108,7 +108,7 @@ xnestQueueKeyEvent(int type, unsigned int keycode) GetEventList(&xnestEvents); lastEventTime = GetTimeInMillis(); - n = GetKeyboardEvents(xnestEvents, xnestKeyboardDevice, type, keycode); + n = GetKeyboardEvents(xnestEvents, xnestKeyboardDevice, type, keycode, NULL); for (i = 0; i < n; i++) mieqEnqueue(xnestKeyboardDevice, (InternalEvent*)(xnestEvents + i)->event); } |