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:
@@ -257,8 +257,8 @@ void MiscThreadTestCase::TestDetached()
|
||||
threads[n] = new MyDetachedThread(10, 'A' + n);
|
||||
}
|
||||
|
||||
threads[0]->SetPriority(WXTHREAD_MIN_PRIORITY);
|
||||
threads[1]->SetPriority(WXTHREAD_MAX_PRIORITY);
|
||||
threads[0]->SetPriority(wxPRIORITY_MIN);
|
||||
threads[1]->SetPriority(wxPRIORITY_MAX);
|
||||
|
||||
for ( n = 0; n < nThreads; n++ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user