]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/thread.cpp
Added ability to switch off more components of the size page UI
[wxWidgets.git] / src / os2 / thread.cpp
index d1ee5dc364a051a7a0b29c2ab7698cd04d3da9e9..830595af2a64133b3cc6f5a906d14ed077a23de0 100644 (file)
@@ -354,7 +354,7 @@ public:
     {
         m_hThread = 0;
         m_eState = STATE_NEW;
-        m_nPriority = WXTHREAD_DEFAULT_PRIORITY;
+        m_nPriority = wxPRIORITY_DEFAULT;
     }
 
     ~wxThreadInternal()
@@ -497,7 +497,7 @@ bool wxThreadInternal::Create( wxThread* pThread,
         return false;
     }
     m_hThread = tid;
-    if (m_nPriority != WXTHREAD_DEFAULT_PRIORITY)
+    if (m_nPriority != wxPRIORITY_DEFAULT)
     {
         SetPriority(m_nPriority);
     }