Use wxMilliSleep instead of the deprecated wxUsleep

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell 2005-04-22 13:41:28 +00:00
parent 90eb13e62e
commit c1edaaeac6

View File

@ -51,7 +51,7 @@ void wxBell()
void wxSleep(int nSecs)
{
wxUsleep(1000 * nSecs);
wxMilliSleep(1000 * nSecs);
}
void wxMilliSleep(unsigned long milliseconds)