mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Xi: silence compiler warnings about "wrong" event types.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
@@ -1002,12 +1002,13 @@ ProcessOtherEvent(InternalEvent *ev, DeviceIntPtr device)
|
||||
|
||||
|
||||
if (grab)
|
||||
DeliverGrabbedEvent(event, device, deactivateDeviceGrab);
|
||||
DeliverGrabbedEvent((InternalEvent*)event, device, deactivateDeviceGrab);
|
||||
else if (device->focus && !IsPointerEvent((InternalEvent*)ev))
|
||||
DeliverFocusedEvent(device, event, GetSpriteWindow(device));
|
||||
DeliverFocusedEvent(device, (InternalEvent*)event,
|
||||
GetSpriteWindow(device));
|
||||
else
|
||||
DeliverDeviceEvents(GetSpriteWindow(device), event, NullGrab,
|
||||
NullWindow, device);
|
||||
DeliverDeviceEvents(GetSpriteWindow(device), (InternalEvent*)event,
|
||||
NullGrab, NullWindow, device);
|
||||
|
||||
if (deactivateDeviceGrab == TRUE)
|
||||
(*device->deviceGrab.DeactivateGrab) (device);
|
||||
|
||||
Reference in New Issue
Block a user