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

View File

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