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:
@@ -51,7 +51,7 @@ void wxBell()
|
|||||||
|
|
||||||
void wxSleep(int nSecs)
|
void wxSleep(int nSecs)
|
||||||
{
|
{
|
||||||
wxUsleep(1000 * nSecs);
|
wxMilliSleep(1000 * nSecs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxMilliSleep(unsigned long milliseconds)
|
void wxMilliSleep(unsigned long milliseconds)
|
||||||
|
Reference in New Issue
Block a user