]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/timer.cpp
Fix signatures of various image handlers methods.
[wxWidgets.git] / src / osx / core / timer.cpp
index 2a18cd7ff3ca367a43bfa2bc2e67a296bed12eee..3f55f8895c2c1c79fda431de893ecfd4e87a21b3 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////
-// Name:        sec/osx/core/timer.cpp
+// Name:        src/osx/core/timer.cpp
 // Purpose:     wxTimer implementation using CoreFoundation
 // Author:      Stefan Csomor
 // Modified by:
 // Purpose:     wxTimer implementation using CoreFoundation
 // Author:      Stefan Csomor
 // Modified by:
@@ -88,8 +88,13 @@ bool wxOSXTimerImpl::Start( int milliseconds, bool mode )
     
     wxASSERT_MSG( m_info->m_timerRef != NULL, wxT("unable to create timer"));
     
     
     wxASSERT_MSG( m_info->m_timerRef != NULL, wxT("unable to create timer"));
     
-    CFRunLoopAddTimer( CFRunLoopGetMain() // or CFRunLoopGetCurrent() ?
-        , m_info->m_timerRef, kCFRunLoopCommonModes) ;
+    CFRunLoopRef runLoop = 0;
+#if wxOSX_USE_IPHONE
+    runLoop = CFRunLoopGetMain();
+#else
+    runLoop = CFRunLoopGetCurrent();
+#endif
+    CFRunLoopAddTimer( runLoop, m_info->m_timerRef, kCFRunLoopCommonModes) ;
 
 
     return true;
 
 
     return true;