]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied [ 731578 ] wxThread state bugfix
authorJulian Smart <julian@anthemion.co.uk>
Sat, 3 May 2003 15:41:57 +0000 (15:41 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 3 May 2003 15:41:57 +0000 (15:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/thread.cpp

index 7c5a377d5e2b03eea56ac94e395c46d6161164ae..92f34c9ca8b8914972b31ffd03b9be0b7aacc6f8 100644 (file)
@@ -674,6 +674,8 @@ bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize)
         SetPriority(m_priority);
     }
 
+    m_state = STATE_NEW;
+
     return TRUE;
 }