From: Vadim Zeitlin Date: Thu, 8 Jul 2004 19:02:01 +0000 (+0000) Subject: fixed warning about deprecated wxUsleep X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cf25117b67548f2fcf40ef829a10b8e4d1870e48 fixed warning about deprecated wxUsleep git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/threadpsx.cpp b/src/unix/threadpsx.cpp index 7306f1e207..3da088548d 100644 --- a/src/unix/threadpsx.cpp +++ b/src/unix/threadpsx.cpp @@ -969,7 +969,7 @@ void wxThread::Yield() void wxThread::Sleep(unsigned long milliseconds) { - wxUsleep(milliseconds); + wxMilliSleep(milliseconds); } int wxThread::GetCPUCount()