]> git.saurik.com Git - wxWidgets.git/commitdiff
value expansion to double
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 6 Mar 2003 16:38:19 +0000 (16:38 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 6 Mar 2003 16:38:19 +0000 (16:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19513 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/thread.cpp
src/mac/thread.cpp

index 23a72037529fc718ccf96605f5a9d16ecc321457..3e4b1dfc490d05df06c212a4ba8922416dbf72ef 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()
index 23a72037529fc718ccf96605f5a9d16ecc321457..3e4b1dfc490d05df06c212a4ba8922416dbf72ef 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()