From: Julian Smart Date: Sat, 3 May 2003 15:41:57 +0000 (+0000) Subject: Applied [ 731578 ] wxThread state bugfix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/40f359cafed30dedf8d2dc7ff2c9b16fcc9bebdf Applied [ 731578 ] wxThread state bugfix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/thread.cpp b/src/msw/thread.cpp index 7c5a377d5e..92f34c9ca8 100644 --- a/src/msw/thread.cpp +++ b/src/msw/thread.cpp @@ -674,6 +674,8 @@ bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize) SetPriority(m_priority); } + m_state = STATE_NEW; + return TRUE; }