X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fbackgroundmgr.h;fp=src%2Fbackgroundmgr.h;h=90bbf147525182765ccd057b2b161573be394a16;hb=1ef49f39828474ed05fe69aff68d400e3b7d4044;hp=d3f49a1304541b6f26361559ffe82f3e9865f3b2;hpb=b0df0a0f3008d0fee67f388cfa1c37af6383b38f;p=ctsim.git diff --git a/src/backgroundmgr.h b/src/backgroundmgr.h index d3f49a1..90bbf14 100644 --- a/src/backgroundmgr.h +++ b/src/backgroundmgr.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: backgroundmgr.h,v 1.3 2001/02/23 02:06:02 kevin Exp $ +** $Id: backgroundmgr.h,v 1.4 2001/02/23 18:56:56 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 @@ -63,7 +63,7 @@ private: BackgroundManagerCanvas* m_pCanvas; int m_iNumTasks; - typedef std::vector TaskContainer; + typedef std::vector TaskContainer; typedef std::vector GaugeContainer; typedef std::vector StringContainer; typedef std::vector PositionContainer; @@ -83,9 +83,9 @@ private: public: BackgroundManager (); - wxGauge* addTask (BackgroundTask* pTask, int iNumUnits, const char* const pszTaskName); - void taskDone (BackgroundTask* pTask); - bool isCancelling (BackgroundTask* pTask); + wxGauge* addTask (BackgroundSupervisor* pTask, int iNumUnits, const char* const pszTaskName); + void taskDone (BackgroundSupervisor* pTask); + bool isCancelling (BackgroundSupervisor* pTask); TaskContainer& getTasks() { return m_vecpBackgroundTasks;} GaugeContainer& getGauges() { return m_vecpGauges;}