]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/thread.cpp
now compiles with USE_XPM_IN_MSW on, added error messages if bitmap can't
[wxWidgets.git] / src / msw / thread.cpp
index 33ca0a645ad7b656c210967a899e2b7dd933fdfd..4cd91e87c04e9876bfc5a3d64a274552fff41117 100644 (file)
@@ -233,7 +233,7 @@ void wxThread::SetPriority(int prio)
   p_internal->prio = prio;
 }
 
-int wxThread::GetPriority()
+int wxThread::GetPriority() const
 {
   return p_internal->prio;
 }
@@ -275,7 +275,7 @@ unsigned long wxThread::GetID() const
   return (unsigned long)p_internal->tid;
 }
 
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
 {
   return (GetCurrentThread() == p_mainid);
 }