X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/524c47aa3adf2af11a3069fd5da035a604f08f66..08670ea85abf4b4946a9ce64971b591d7b1ee30b:/src/osx/core/hidjoystick.cpp diff --git a/src/osx/core/hidjoystick.cpp b/src/osx/core/hidjoystick.cpp index 2d6242d0b3..d1563b650c 100644 --- a/src/osx/core/hidjoystick.cpp +++ b/src/osx/core/hidjoystick.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/osx/corefoundation/joystick.cpp +// Name: src/osx/core/joystick.cpp // Purpose: wxJoystick class // Author: Ryan Norton // Modified by: @@ -157,8 +157,7 @@ wxJoystick::wxJoystick(int joystick) } else { - delete m_hid; - m_hid = NULL; + wxDELETE(m_hid); } } @@ -174,8 +173,7 @@ wxJoystick::~wxJoystick() if (m_thread) m_thread->Delete(); // It's detached so it will delete itself - if (m_hid) - delete m_hid; + delete m_hid; } //--------------------------------------------------------------------------- @@ -780,7 +778,7 @@ void* wxJoystickThread::Entry() //--------------------------------------------------------------------------- // wxJoystickThread::HIDCallback (static) // -// Callback for the native HID device when it recieves input. +// Callback for the native HID device when it receives input. // // This is where the REAL dirty work gets done. // @@ -895,11 +893,11 @@ void* wxJoystickThread::Entry() wxevent.SetEventObject(pThis->m_catchwin); if (pThis->m_catchwin) - pThis->m_catchwin->AddPendingEvent(wxevent); + pThis->m_catchwin->GetEventHandler()->AddPendingEvent(wxevent); ret = (*m_hid->GetQueue())->getNextEvent(m_hid->GetQueue(), &hidevent, bogustime, 0); } } -#endif // wxUSE_JOYSTICK +#endif // wxUSE_JOYSTICK