diff options
author | root <root@agamemnon.b5> | 2007-01-11 22:41:23 -0500 |
---|---|---|
committer | root <root@agamemnon.b5> | 2007-01-11 22:41:23 -0500 |
commit | 987c6b1597f184e035c3ecef15a776f7c64cd4fe (patch) | |
tree | 4c5f36231801b80d174951ca4bdbbfbdcecca499 /src/evdev_key.c | |
parent | Pad out button_names so we can loop over things more sanely. (diff) | |
download | xf86-input-evdev-987c6b1597f184e035c3ecef15a776f7c64cd4fe.tar.gz xf86-input-evdev-987c6b1597f184e035c3ecef15a776f7c64cd4fe.tar.bz2 xf86-input-evdev-987c6b1597f184e035c3ecef15a776f7c64cd4fe.zip |
No more call to xf86OSRingBell in any cases,
maybe do some conditional stuff later.
Diffstat (limited to 'src/evdev_key.c')
-rw-r--r-- | src/evdev_key.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/evdev_key.c b/src/evdev_key.c index f840d1a..f448e35 100644 --- a/src/evdev_key.c +++ b/src/evdev_key.c @@ -235,14 +235,18 @@ static KeySym map[] = { /* * FIXME: We have no way of ringing the bell ourselves. - * So use the system bell for now. + * + * And recent versions of X don't have the system call. + * Who cares. */ static void EvdevKbdBell (int percent, DeviceIntPtr device, pointer arg, int unused) { +#if 0 KeybdCtrl *ctrl = arg; xf86OSRingBell(percent, ctrl->bell_pitch, ctrl->bell_duration); +#endif } static void |