- (void)wxTimerBase::Start(milliseconds, mode);
-
- wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") );
- 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 ;
- InsXTime((QElemPtr) &m_info.m_task ) ;
- PrimeTime( (QElemPtr) &m_info.m_task , m_milli ) ;
- return FALSE;
+ (void)wxTimerImpl::Start(milliseconds, mode);
+
+ wxCHECK_MSG( m_milli > 0, false, wxT("invalid value for timer timeout") );
+ wxCHECK_MSG( m_info->m_timerRef == NULL, false, wxT("attempting to restart a timer") );
+
+ m_info->m_timer = this;
+ m_info->m_proc = NewEventLoopTimerUPP( &wxProcessTimer );
+
+ OSStatus err = InstallEventLoopTimer(
+ GetMainEventLoop(),
+ m_milli*kEventDurationMillisecond,
+ IsOneShot() ? 0 : m_milli * kEventDurationMillisecond,
+ m_info->m_proc,
+ this,
+ &m_info->m_timerRef );
+ verify_noerr( err );
+
+ return true;