summaryrefslogtreecommitdiff
path: root/include/comphelper/propertysetinfo.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-05 22:41:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-06 08:04:22 +0100
commit4a8175ebeb58555e5d48df134cfaf128293888f1 (patch)
tree316963d1842bcf5ea16f489dc1c6d076fe9bb3c9 /include/comphelper/propertysetinfo.hxx
parent0b5e5783d8b15b0415c9fd5043932882904aece8 (diff)
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'include/comphelper/propertysetinfo.hxx')
-rw-r--r--include/comphelper/propertysetinfo.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/comphelper/propertysetinfo.hxx b/include/comphelper/propertysetinfo.hxx
index bc2b8a4ac64f..34b12e109b1a 100644
--- a/include/comphelper/propertysetinfo.hxx
+++ b/include/comphelper/propertysetinfo.hxx
@@ -20,9 +20,12 @@
#ifndef INCLUDED_COMPHELPER_PROPERTYSETINFO_HXX
#define INCLUDED_COMPHELPER_PROPERTYSETINFO_HXX
+#include <sal/config.h>
+
+#include <map>
+
#include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <cppuhelper/implbase1.hxx>
-#include <comphelper/stl_types.hxx>
#include <comphelper/comphelperdllapi.h>
//=========================================================================
@@ -44,7 +47,7 @@ struct PropertyMapEntry
sal_uInt8 mnMemberId;
};
-DECLARE_STL_USTRINGACCESS_MAP( PropertyMapEntry*, PropertyMap );
+typedef std::map<OUString, PropertyMapEntry*> PropertyMap;
class PropertyMapImpl;