mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 16:20:03 +01:00
XQuartz: Cleaned up some casting to get rid of compiler warnings
This commit is contained in:
parent
bc50d41f9d
commit
6f1c85b965
1 changed files with 14 additions and 17 deletions
|
|
@ -335,37 +335,34 @@ static void DarwinChangePointerControl(
|
||||||
* DarwinMouseProc
|
* DarwinMouseProc
|
||||||
* Handle the initialization, etc. of a mouse
|
* Handle the initialization, etc. of a mouse
|
||||||
*/
|
*/
|
||||||
static int DarwinMouseProc(
|
static int DarwinMouseProc(DeviceIntPtr pPointer, int what) {
|
||||||
DeviceIntPtr pPointer,
|
CARD8 map[8] = {0, 1, 2, 3, 4, 5, 6, 7};
|
||||||
int what )
|
|
||||||
{
|
|
||||||
CARD8 map[8] = {0, 1, 2, 3, 4, 5, 6, 7};
|
|
||||||
|
|
||||||
switch (what) {
|
switch (what) {
|
||||||
|
|
||||||
case DEVICE_INIT:
|
case DEVICE_INIT:
|
||||||
pPointer->public.on = FALSE;
|
pPointer->public.on = FALSE;
|
||||||
|
|
||||||
// Set button map.
|
// Set button map.
|
||||||
InitPointerDeviceStruct( (DevicePtr)pPointer, map, 7,
|
InitPointerDeviceStruct((DevicePtr)pPointer, map, 7,
|
||||||
GetMotionHistory,
|
GetMotionHistory,
|
||||||
(PtrCtrlProcPtr)NoopDDA,
|
(PtrCtrlProcPtr)NoopDDA,
|
||||||
GetMotionHistorySize(), 7);
|
GetMotionHistorySize(), 7);
|
||||||
InitProximityClassDeviceStruct( (DevicePtr)pPointer);
|
InitProximityClassDeviceStruct(pPointer);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DEVICE_ON:
|
case DEVICE_ON:
|
||||||
pPointer->public.on = TRUE;
|
pPointer->public.on = TRUE;
|
||||||
AddEnabledDevice( darwinEventReadFD );
|
AddEnabledDevice( darwinEventReadFD );
|
||||||
return Success;
|
return Success;
|
||||||
|
|
||||||
case DEVICE_CLOSE:
|
case DEVICE_CLOSE:
|
||||||
case DEVICE_OFF:
|
case DEVICE_OFF:
|
||||||
pPointer->public.on = FALSE;
|
pPointer->public.on = FALSE;
|
||||||
RemoveEnabledDevice( darwinEventReadFD );
|
RemoveEnabledDevice(darwinEventReadFD);
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue