Rename WXTHREAD_XXX_PRIORITY yo wxPRIORITY_XXX.
This will allow to reuse the same constants for the process priorities in an upcoming commit. See #14931. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user