wxUsleep is supposed to sleep _milli_seconds, not _micro_seconds.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2003-08-07 21:38:11 +00:00
parent f46f68d9f1
commit f53a0d3287

View File

@@ -283,7 +283,7 @@ void wxUsleep(
unsigned long ulMilliseconds unsigned long ulMilliseconds
) )
{ {
::DosSleep(ulMilliseconds/1000l); ::DosSleep(ulMilliseconds);
} }
void wxSleep( void wxSleep(