diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 22:41:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 08:04:22 +0100 |
commit | 4a8175ebeb58555e5d48df134cfaf128293888f1 (patch) | |
tree | 316963d1842bcf5ea16f489dc1c6d076fe9bb3c9 /reportdesign/inc | |
parent | 0b5e5783d8b15b0415c9fd5043932882904aece8 (diff) |
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'reportdesign/inc')
-rw-r--r-- | reportdesign/inc/RptDef.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/reportdesign/inc/RptDef.hxx b/reportdesign/inc/RptDef.hxx index f633259f631b..860e9025c40a 100644 --- a/reportdesign/inc/RptDef.hxx +++ b/reportdesign/inc/RptDef.hxx @@ -20,10 +20,13 @@ #ifndef _REPORT_RPTUIDEF_HXX #define _REPORT_RPTUIDEF_HXX +#include <sal/config.h> + +#include <map> + #include "dllapi.h" #include <tools/solar.h> #include <svx/svdobj.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/uno3.hxx> #include <svx/fmglob.hxx> #include <boost/shared_ptr.hpp> @@ -92,7 +95,7 @@ public: */ REPORTDESIGN_DLLPUBLIC sal_uInt16 getObjectType(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent>& _xComponent); typedef ::std::pair< OUString, ::boost::shared_ptr<AnyConverter> > TPropertyConverter; -DECLARE_STL_USTRINGACCESS_MAP(TPropertyConverter , TPropertyNamePair); +typedef std::map<OUString, TPropertyConverter> TPropertyNamePair; /** returns the property name map for the givern property id @param _nObjectId the object id */ |