X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fbackgroundsupr.h;fp=src%2Fbackgroundsupr.h;h=dac77cc60106204195a22f3262e328062c2fd12a;hp=3e170b740d4e99f034a9019334da01c4617dcc4f;hb=8cce345df80fdbeea1c03a04a71d805951a87b74;hpb=7af7f4eb207891a4c0bfc60233b90847fd9b96cf diff --git a/src/backgroundsupr.h b/src/backgroundsupr.h index 3e170b7..dac77cc 100644 --- a/src/backgroundsupr.h +++ b/src/backgroundsupr.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: backgroundsupr.h,v 1.6 2001/03/02 21:11:50 kevin Exp $ +** $Id: backgroundsupr.h,v 1.7 2001/03/04 03:14:47 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -93,7 +93,7 @@ public: int iTotalUnits); BackgroundSupervisor () - : m_iTotalUnits(0), wxEvtHandler() + : wxEvtHandler(), m_iTotalUnits(0) {} virtual ~BackgroundSupervisor(); @@ -129,14 +129,13 @@ public: class BackgroundWorkerThread : public wxThread { protected: BackgroundSupervisor* m_pSupervisor; + const int m_iThread; const int m_iStartUnit; const int m_iNumUnits; - const int m_iThread; public: BackgroundWorkerThread (BackgroundSupervisor* pSupervisor, int iThread, int iStartUnit, int iNumUnits) - : m_pSupervisor(pSupervisor), m_iThread(iThread), m_iStartUnit(iStartUnit), m_iNumUnits(iNumUnits), - wxThread (wxTHREAD_DETACHED) + : wxThread (wxTHREAD_DETACHED), m_pSupervisor(pSupervisor), m_iThread(iThread), m_iStartUnit(iStartUnit), m_iNumUnits(iNumUnits) {} };