diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-09-29 00:34:23 +0300 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-09-29 00:34:23 +0300 |
commit | ad631afcf3fbc74024cddaaacd05d38addc047a2 (patch) | |
tree | b7d57ec7a90d22615c8fe0053bd720bd42790e7c /hw/dmx/dmxinput.c | |
parent | a5d639cd87f30f9b3d765352d27253940f33b2b7 (diff) |
make core keyboard/pointer map functions act on all core-sending devices
Make Set{Keyboard,Modifier,Pointer}Mapping act on all devices which send core
events.
Change LegalModifier to accept a DeviceIntPtr.
Diffstat (limited to 'hw/dmx/dmxinput.c')
-rw-r--r-- | hw/dmx/dmxinput.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/dmxinput.c b/hw/dmx/dmxinput.c index 7c376dee4..37f458356 100644 --- a/hw/dmx/dmxinput.c +++ b/hw/dmx/dmxinput.c @@ -53,7 +53,7 @@ /** Returns TRUE if the key is a valid modifier. For PC-class * keyboards, all keys can be used as modifiers, so return TRUE * always. */ -Bool LegalModifier(unsigned int key, DevicePtr pDev) +Bool LegalModifier(unsigned int key, DeviceIntPtr pDev) { return TRUE; } |