]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/thread.cpp
removed superfluous casts
[wxWidgets.git] / src / mac / carbon / thread.cpp
index 23a72037529fc718ccf96605f5a9d16ecc321457..e31c812c02b2c1de8668e422ed414461e06c3d66 100644 (file)
@@ -527,7 +527,7 @@ void wxThread::Sleep(unsigned long milliseconds)
     do
     {
         YieldToAnyThread();
-    } while( clock() - start < (milliseconds * CLOCKS_PER_SEC) / 1000 ) ;
+    } while( clock() - start < milliseconds /  1000.0 * CLOCKS_PER_SEC ) ;
 }
 
 int wxThread::GetCPUCount()
@@ -852,7 +852,7 @@ bool wxThreadModule::OnInit()
 #endif
     if ( !hasThreadManager )
     {
-        wxMessageBox( "Error" , "Thread Support is not available on this System" , wxOK ) ;
+        wxMessageBox( wxT("Error") , wxT("Thread Support is not available on this System") , wxOK ) ;
         return FALSE ;
     }