]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/thrimpl.cpp
Support bitmaps and text and header columns using wxImageList, minor sizing corrections
[wxWidgets.git] / include / wx / thrimpl.cpp
index 63b837fec65bd81f447a778eeb3e32a113d4364e..b9773620a9827ee18dc7a6295a23b0ae0a42b5af 100644 (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__