]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/thread.cpp
no message
[wxWidgets.git] / src / msw / thread.cpp
index 33ca0a645ad7b656c210967a899e2b7dd933fdfd..176d1e4cc138afccf061d037be6b66131bf62f0a 100644 (file)
@@ -13,6 +13,9 @@
 #pragma implementation "thread.h"
 #endif
 
+// this is here to regen the precompiled header in the ide compile otherwise the
+// compiler crashes in vc5 (nfi why)
+// For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
 #if defined(__BORLANDC__)
@@ -233,7 +236,7 @@ void wxThread::SetPriority(int prio)
   p_internal->prio = prio;
 }
 
-int wxThread::GetPriority()
+int wxThread::GetPriority() const
 {
   return p_internal->prio;
 }
@@ -275,7 +278,7 @@ unsigned long wxThread::GetID() const
   return (unsigned long)p_internal->tid;
 }
 
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
 {
   return (GetCurrentThread() == p_mainid);
 }