/////////////////////////////////////////////////////////////////////
// Modify the View Class.
/////////////////////////////////////////////////////////////////////
// 1) use ClassWizard to add an UPDATE_COMMAND_UI handler to
// the selected menu command.
void CWzdView::OnUpdateWzdType(CCmdUI* pCmdUI)
{
// 2) call SetCheck() with TRUE to set check mark
pCmdUI->SetCheck(m_bWzd);
}
/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1998 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////