/////////////////////////////////////////////////////////////////////
// Modify Application Class
/////////////////////////////////////////////////////////////////////
// 1) use ClassWizard to override CWinApp::OnIdle()
BOOL CWzdApp::OnIdle(LONG lCount)
{
// 2) perform cleanup as in this example
while (!m_TempList.IsEmpty())
{
delete m_TempList.RemoveHead();
}
return CWinApp::OnIdle(lCount);
}
/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1999 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////