X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/489468feaa08b8f504735eecca522fb8d0f825d2..55410bb4f67febe1ca20654f078ea4fb9a6223ae:/src/osx/core/hidjoystick.cpp diff --git a/src/osx/core/hidjoystick.cpp b/src/osx/core/hidjoystick.cpp index 637546c414..5fb651f34a 100644 --- a/src/osx/core/hidjoystick.cpp +++ b/src/osx/core/hidjoystick.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/mac/corefoundation/joystick.cpp +// Name: src/osx/corefoundation/joystick.cpp // Purpose: wxJoystick class // Author: Ryan Norton // Modified by: @@ -41,7 +41,7 @@ #include "wx/thread.h" //wxThread for polling thread/ wxCriticalSection //private headers -#include "wx/mac/corefoundation/hid.h" //private mac hid stuff +#include "wx/osx/core/hid.h" //private mac hid stuff //mac headers #include @@ -174,8 +174,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; } //--------------------------------------------------------------------------- @@ -895,7 +894,7 @@ 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);