# HG changeset patch # User truebrain # Date 1207057504 0 # Node ID b385c3ee0926f9a4a679978114409b4d4996ac1d # Parent 7adb6a846addd9b3d6fc9869ffcbee125f3d7159 (svn r12530) [NoAI] -Fix r12528: missing 'public' statement gives funny effects (tnx glx) diff -r 7adb6a846add -r b385c3ee0926 src/thread_win32.cpp --- a/src/thread_win32.cpp Tue Apr 01 13:40:36 2008 +0000 +++ b/src/thread_win32.cpp Tue Apr 01 13:45:04 2008 +0000 @@ -65,12 +65,14 @@ * Win32 thread version for ThreadObject. */ class ThreadObject_Win32 : public ThreadObject { +private: uint m_id_thr; HANDLE m_h_thr; OTTDThreadFunc m_proc; void *m_param; bool m_attached; +public: /** * Create a win32 thread and start it, calling proc(param). */