X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4afa6df339eadbe09440b8c190cc6231f076dd65..5e4e03e9f99ebce30c49da587ad97b4ed7d63595:/src/mac/corefoundation/hidjoystick.cpp diff --git a/src/mac/corefoundation/hidjoystick.cpp b/src/mac/corefoundation/hidjoystick.cpp index 12d5b86ba9..637546c414 100644 --- a/src/mac/corefoundation/hidjoystick.cpp +++ b/src/mac/corefoundation/hidjoystick.cpp @@ -25,7 +25,7 @@ //--------------------------------------------------------------------------- //we only support HID on OSX (DARWIN), since it requires DARWIN... -#if wxUSE_JOYSTICK && defined(__DARWIN__) && wxUSE_THREADS +#if wxUSE_JOYSTICK && wxUSE_THREADS //--------------------------------------------------------------------------- // Includes @@ -480,7 +480,7 @@ int wxJoystick::GetMovementThreshold() const return 0; } -void wxJoystick::SetMovementThreshold(int threshold) +void wxJoystick::SetMovementThreshold(int WXUNUSED(threshold)) { } @@ -795,8 +795,10 @@ void* wxJoystickThread::Entry() // 5) Sends the event to the polling window (if any) // 6) Gets the next event and goes back to (1) //--------------------------------------------------------------------------- -/*static*/ void wxJoystickThread::HIDCallback(void* target, IOReturn res, - void* context, void* sender) +/*static*/ void wxJoystickThread::HIDCallback(void* WXUNUSED(target), + IOReturn WXUNUSED(res), + void* context, + void* WXUNUSED(sender)) { IOHIDEventStruct hidevent; AbsoluteTime bogustime = {0,0}; @@ -900,4 +902,4 @@ void* wxJoystickThread::Entry() } } -#endif // wxUSE_JOYSTICK && defined(__DARWIN__) +#endif // wxUSE_JOYSTICK