From f9940dab60237ca20ce4975f12f7a882ee6367f6 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sat, 3 May 2003 15:41:57 +0000 Subject: [PATCH] Applied [ 731578 ] wxThread state bugfix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/thread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msw/thread.cpp b/src/msw/thread.cpp index 4cbf5710d5..64f7489667 100644 --- a/src/msw/thread.cpp +++ b/src/msw/thread.cpp @@ -659,6 +659,8 @@ bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize) SetPriority(m_priority); } + m_state = STATE_NEW; + return TRUE; }