summaryrefslogtreecommitdiffstats
path: root/Source/MFCDialog/PropertyList.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/MFCDialog/PropertyList.h')
-rw-r--r--Source/MFCDialog/PropertyList.h6
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;
};
/////////////////////////////////////////////////////////////////////////////