diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 19:27:28 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 19:27:28 (GMT) |
commit | 7a6699e183944ea12454cddbd34415b1c1d300c2 (patch) | |
tree | d88851770294267cc43719245ed8f6cf102394bb /Source/MFCDialog/PropertyList.cpp | |
parent | ad2437f08c24b4ffce7814dd5bfd4e5d043e09ba (diff) | |
download | CMake-7a6699e183944ea12454cddbd34415b1c1d300c2.zip CMake-7a6699e183944ea12454cddbd34415b1c1d300c2.tar.gz CMake-7a6699e183944ea12454cddbd34415b1c1d300c2.tar.bz2 |
display the property name in the help box
Diffstat (limited to 'Source/MFCDialog/PropertyList.cpp')
-rw-r--r-- | Source/MFCDialog/PropertyList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/MFCDialog/PropertyList.cpp b/Source/MFCDialog/PropertyList.cpp index 47af0d1..407278e 100644 --- a/Source/MFCDialog/PropertyList.cpp +++ b/Source/MFCDialog/PropertyList.cpp @@ -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() |