wxThread::Sleep() is the same as wxMilliSleep() on all platforms but Mac (and maybe it should be the same thing there as well)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53134 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-04-12 02:28:46 +00:00
parent 40ec64aec2
commit 8cd8a7feb7
7 changed files with 17 additions and 29 deletions

View File

@@ -336,3 +336,17 @@ wxSemaError wxSemaphore::Post()
return m_internal->Post();
}
// ----------------------------------------------------------------------------
// wxThread
// ----------------------------------------------------------------------------
#ifndef __WXMAC__
#include "wx/utils.h"
void wxThread::Sleep(unsigned long milliseconds)
{
wxMilliSleep(milliseconds);
}
#endif // __WXMAC__