X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d015713e787da8241e92ff86ee2e911868b8024c..d21d2e5adf7a5acf3b496a9c4e87eab220bd75d8:/src/mac/timer.cpp diff --git a/src/mac/timer.cpp b/src/mac/timer.cpp index 4135235791..f2b5f2e896 100644 --- a/src/mac/timer.cpp +++ b/src/mac/timer.cpp @@ -72,9 +72,15 @@ bool wxTimer::Start(int milliseconds,bool mode) wxCHECK_MSG( m_info.m_task.tmAddr == NULL , FALSE, wxT("attempting to restart a timer") ); m_milli = milliseconds; - m_info.m_task.tmAddr = NewTimerProc( MacTimerProc ) ; - m_info.m_task.tmWakeUp = 0 ; - m_info.m_task.tmReserved = 0 ; +#if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340) + m_info.m_task.tmAddr = NewTimerUPP( MacTimerProc ) ; +#else + m_info.m_task.tmAddr = NewTimerProc( MacTimerProc ) ; +#endif + m_info.m_task.tmWakeUp = 0 ; + m_info.m_task.tmReserved = 0 ; + m_info.m_task.qType = 0 ; + m_info.m_timer = this ; InsXTime((QElemPtr) &m_info.m_task ) ; PrimeTime( (QElemPtr) &m_info.m_task , m_milli ) ; return FALSE;