diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-04-24 18:19:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-04-24 18:19:13 (GMT) |
commit | b5746484e4c396489b707e0f8b4d1f539e62a965 (patch) | |
tree | f61bc5000e702fa75ecdd7a77e3490ba946f0264 /Source/MFCDialog/PropertyList.h | |
parent | 37468fad3aed3eb5116e42362d1b6f37adde595f (diff) | |
download | CMake-b5746484e4c396489b707e0f8b4d1f539e62a965.zip CMake-b5746484e4c396489b707e0f8b4d1f539e62a965.tar.gz CMake-b5746484e4c396489b707e0f8b4d1f539e62a965.tar.bz2 |
BUG: fix duplicate property items
Diffstat (limited to 'Source/MFCDialog/PropertyList.h')
-rw-r--r-- | Source/MFCDialog/PropertyList.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/MFCDialog/PropertyList.h b/Source/MFCDialog/PropertyList.h index c6d65ed..a5a8f21 100644 --- a/Source/MFCDialog/PropertyList.h +++ b/Source/MFCDialog/PropertyList.h @@ -19,7 +19,7 @@ #define IDC_PROPBTNCTRL 714 #define IDC_PROPCHECKBOXCTRL 715 -#include <list> +#include "../cmStandardIncludes.h" ///////////////////////////////////////////////////////////////////////////// //CPropertyList Items @@ -63,7 +63,7 @@ public: const char* value, int type, const char* comboItems); - std::list<CPropertyItem*> GetItems() + std::set<CPropertyItem*> GetItems() { return m_PropertyItems; } @@ -130,7 +130,7 @@ protected: BOOL m_bDivIsSet; HCURSOR m_hCursorArrow; HCURSOR m_hCursorSize; - std::list<CPropertyItem*> m_PropertyItems; + std::set<CPropertyItem*> m_PropertyItems; }; ///////////////////////////////////////////////////////////////////////////// |