Xi: silence compiler warnings about "wrong" event types.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2009-04-09 19:11:27 +10:00
parent 6b467bf879
commit 4fee979d06

View File

@ -1002,12 +1002,13 @@ ProcessOtherEvent(InternalEvent *ev, DeviceIntPtr device)
if (grab) if (grab)
DeliverGrabbedEvent(event, device, deactivateDeviceGrab); DeliverGrabbedEvent((InternalEvent*)event, device, deactivateDeviceGrab);
else if (device->focus && !IsPointerEvent((InternalEvent*)ev)) else if (device->focus && !IsPointerEvent((InternalEvent*)ev))
DeliverFocusedEvent(device, event, GetSpriteWindow(device)); DeliverFocusedEvent(device, (InternalEvent*)event,
GetSpriteWindow(device));
else else
DeliverDeviceEvents(GetSpriteWindow(device), event, NullGrab, DeliverDeviceEvents(GetSpriteWindow(device), (InternalEvent*)event,
NullWindow, device); NullGrab, NullWindow, device);
if (deactivateDeviceGrab == TRUE) if (deactivateDeviceGrab == TRUE)
(*device->deviceGrab.DeactivateGrab) (device); (*device->deviceGrab.DeactivateGrab) (device);