From f32edf89b1939c5e68226c8395ddf9794ca6b8b4 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 6 May 2003 19:14:17 +0000 Subject: [PATCH] Compilo fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/threadpsx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/threadpsx.cpp b/src/unix/threadpsx.cpp index 57763be2a8..20a74a36ad 100644 --- a/src/unix/threadpsx.cpp +++ b/src/unix/threadpsx.cpp @@ -1168,7 +1168,7 @@ wxThreadError wxThread::Create(unsigned int WXUNUSED(stackSize)) return wxTHREAD_NO_RESOURCE; } - m_state = STATE_NEW; + m_internal->SetState(STATE_NEW); return wxTHREAD_NO_ERROR; }