Exemplo n.º 1
0
void CImageLibrary::ClearMarks (void)

//	ClearMarks
//
//	Clears the marks for all images

	{
	for (int i = 0; i < m_Library.GetCount(); i++)
		{
		CObjectImage *pImage = (CObjectImage *)m_Library.GetValue(i);
		pImage->ClearMark();
		}
	}
Exemplo n.º 2
0
void CDesignCollection::ClearImageMarks (void)

//	ClearImageMarks
//
//	Clears marks on all images

	{
	int i;

	for (i = 0; i < GetCount(designImage); i++)
		{
		CObjectImage *pImage = CObjectImage::AsType(GetEntry(designImage, i));
		pImage->ClearMark();
		}
	}