]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/threadpsx.cpp
Cleaned up/Fixed wxGrid{Cell,RowOrCol}AttrData::SetAttr, adding some comments.
[wxWidgets.git] / src / unix / threadpsx.cpp
index 0384805c1ad09e9f98354e583ef09a43b0d2ba5f..29288623cd431366f2dee4cc5ea766d872575e21 100644 (file)
@@ -1050,11 +1050,6 @@ void wxThread::Yield()
 #endif
 }
 
-void wxThread::Sleep(unsigned long milliseconds)
-{
-    wxMilliSleep(milliseconds);
-}
-
 int wxThread::GetCPUCount()
 {
 #if defined(_SC_NPROCESSORS_ONLN)
@@ -1800,12 +1795,12 @@ static void DeleteThread(wxThread *This)
     }
 }
 
-void wxMutexGuiEnter()
+void wxMutexGuiEnterImpl()
 {
     gs_mutexGui->Lock();
 }
 
-void wxMutexGuiLeave()
+void wxMutexGuiLeaveImpl()
 {
     gs_mutexGui->Unlock();
 }