X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f1ae4143271ae63a17e052a1a471d16e9cd8c44..cbee8f8dc777aa7131df267f78be377d85a10cda:/src/mac/timer.cpp diff --git a/src/mac/timer.cpp b/src/mac/timer.cpp index 3d0bb31c08..4135235791 100644 --- a/src/mac/timer.cpp +++ b/src/mac/timer.cpp @@ -21,13 +21,13 @@ IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject) static void wxProcessTimer( unsigned long event , void *data ) ; -pascal void MacTimerProc( TMTask * t ) +static pascal void MacTimerProc( TMTask * t ) { MacTimerInfo * tm = (MacTimerInfo*) t ; wxMacAddEvent( tm->m_table , wxProcessTimer, 0 , (void*) tm->m_timer , TRUE ) ; } -void wxProcessTimer( unsigned long event , void *data ) +static void wxProcessTimer( unsigned long event , void *data ) { if ( !data ) return ; @@ -44,7 +44,7 @@ void wxProcessTimer( unsigned long event , void *data ) } } -wxTimer::wxTimer() +void wxTimer::Init() { m_info.m_task.tmAddr = NULL ; m_info.m_task.tmWakeUp = 0 ;