display the property name in the help box

This commit is contained in:
Sebastien Barre 2001-05-25 15:27:28 -04:00
parent ad2437f08c
commit 7a6699e183
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ void CPropertyList::OnHelp()
return;
}
CPropertyItem* pItem = (CPropertyItem*) GetItemDataPtr(m_curSel);
MessageBox(pItem->m_HelpString);
MessageBox(pItem->m_HelpString, pItem->m_propName, MB_OK|MB_ICONINFORMATION);
}
void CPropertyList::RemoveAll()