summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/sdxmlimp_impl.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 /xmloff/source/draw/sdxmlimp_impl.hxx
parent0b5e5783d8b15b0415c9fd5043932882904aece8 (diff)
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'xmloff/source/draw/sdxmlimp_impl.hxx')
-rw-r--r--xmloff/source/draw/sdxmlimp_impl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/sdxmlimp_impl.hxx b/xmloff/source/draw/sdxmlimp_impl.hxx
index 4d50c63a64c5..884ca77e16f5 100644
--- a/xmloff/source/draw/sdxmlimp_impl.hxx
+++ b/xmloff/source/draw/sdxmlimp_impl.hxx
@@ -25,8 +25,8 @@
#include <com/sun/star/task/XStatusIndicator.hpp>
#include <xmloff/xmltkmap.hxx>
#include <com/sun/star/container/XNameAccess.hpp>
-#include <comphelper/stl_types.hxx>
+#include <map>
#include <vector>
#include <xmloff/xmlimp.hxx>
@@ -166,8 +166,8 @@ struct DateTimeDeclContextImpl
DateTimeDeclContextImpl() : mbFixed(sal_True) {}
};
-DECLARE_STL_USTRINGACCESS_MAP( OUString, HeaderFooterDeclMap );
-DECLARE_STL_USTRINGACCESS_MAP( DateTimeDeclContextImpl, DateTimeDeclMap );
+typedef std::map<OUString, OUString> HeaderFooterDeclMap;
+typedef std::map<OUString, DateTimeDeclContextImpl> DateTimeDeclMap;
class SdXMLImport: public SvXMLImport
{