diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 18:34:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 18:36:22 +0100 |
commit | 895e6e7bb7abddb135f6fe3cfef1505261d4cbc6 (patch) | |
tree | 07e906292f1e9ecc47b49603a920ddc28c41d91c /xmloff/source/transform/MetaTContext.hxx | |
parent | 0c55303581156d01992d9d958ac5f7aafc4a3ebb (diff) |
Get rid of comphelper::UStringLess
...default std::less<OUString> is just fine.
Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
Diffstat (limited to 'xmloff/source/transform/MetaTContext.hxx')
-rw-r--r-- | xmloff/source/transform/MetaTContext.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xmloff/source/transform/MetaTContext.hxx b/xmloff/source/transform/MetaTContext.hxx index be8ac95ad354..b37b05fcc15f 100644 --- a/xmloff/source/transform/MetaTContext.hxx +++ b/xmloff/source/transform/MetaTContext.hxx @@ -21,14 +21,12 @@ #define INCLUDED_XMLOFF_SOURCE_TRANSFORM_METATCONTEXT_HXX #include <rtl/ref.hxx> -#include <comphelper/stl_types.hxx> #include <map> #include "FlatTContext.hxx" typedef ::std::multimap< OUString, - ::rtl::Reference< XMLPersTextContentTContext >, - ::comphelper::UStringLess > XMLMetaContexts_Impl; + ::rtl::Reference< XMLPersTextContentTContext > > XMLMetaContexts_Impl; class XMLMetaTransformerContext : public XMLTransformerContext |