r576: no message
[ctsim.git] / src / backgroundmgr.cpp
index e915624bf7fe00db1bb17b3b7312a168a74170ce..c835b7b744565925b2c369e0daa4319273368fa1 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2001 Kevin Rosenberg
 **
-**  $Id: backgroundmgr.cpp,v 1.3 2001/02/23 02:06:02 kevin Exp $
+**  $Id: backgroundmgr.cpp,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
@@ -76,7 +76,7 @@ BackgroundManager::OnCloseWindow (wxCloseEvent& event)
 
 
 wxGauge* 
-BackgroundManager::addTask (BackgroundTask* pTask, int iNumUnits, const char* const pszTaskName)
+BackgroundManager::addTask (BackgroundSupervisor* pTask, int iNumUnits, const char* const pszTaskName)
 {
   wxCriticalSectionLocker locker (m_criticalSection);
   int iNumTasks = m_vecpBackgroundTasks.size();
@@ -117,7 +117,7 @@ BackgroundManager::addTask (BackgroundTask* pTask, int iNumUnits, const char* co
 
 
 void 
-BackgroundManager::taskDone (BackgroundTask* pTask)
+BackgroundManager::taskDone (BackgroundSupervisor* pTask)
 {
   wxCriticalSectionLocker locker (m_criticalSection);
 
@@ -166,7 +166,7 @@ BackgroundManager::resizeWindow()
 
 
 bool
-BackgroundManager::isCancelling (BackgroundTask* pTask)
+BackgroundManager::isCancelling (BackgroundSupervisor* pTask)
 {
   return false;
 }