From cf25117b67548f2fcf40ef829a10b8e4d1870e48 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 8 Jul 2004 19:02:01 +0000 Subject: [PATCH] fixed warning about deprecated wxUsleep git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/threadpsx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.45.2