Xnest: replace XBell() by xcb_bell()
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
245c23cc30
commit
43b73eb527
|
@ -48,13 +48,13 @@ DeviceIntPtr xnestKeyboardDevice = NULL;
|
||||||
void
|
void
|
||||||
xnestBell(int volume, DeviceIntPtr pDev, void *ctrl, int cls)
|
xnestBell(int volume, DeviceIntPtr pDev, void *ctrl, int cls)
|
||||||
{
|
{
|
||||||
XBell(xnestDisplay, volume);
|
xcb_bell(xnestUpstreamInfo.conn, volume);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
DDXRingBell(int volume, int pitch, int duration)
|
DDXRingBell(int volume, int pitch, int duration)
|
||||||
{
|
{
|
||||||
XBell(xnestDisplay, volume);
|
xcb_bell(xnestUpstreamInfo.conn, volume);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue