diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-02-18 21:12:20 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-02-18 21:33:05 +0100 |
commit | a8e35884d26c31cd449a9c615e612360b6c9ec50 (patch) | |
tree | da4e4ddee1c05b6eb998b92a7462787c7410b07c /xmloff/source/transform/MetaTContext.hxx | |
parent | a8a38888b5659d4ae655d2aa26b10d248baf6732 (diff) |
xmloff: use ::comphelper::UStringLess instead of less_functor
Diffstat (limited to 'xmloff/source/transform/MetaTContext.hxx')
-rw-r--r-- | xmloff/source/transform/MetaTContext.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/transform/MetaTContext.hxx b/xmloff/source/transform/MetaTContext.hxx index 7ccca93c84b3..ad17f4959567 100644 --- a/xmloff/source/transform/MetaTContext.hxx +++ b/xmloff/source/transform/MetaTContext.hxx @@ -30,15 +30,14 @@ #define _XMLOFF_METATCONTEXT_HXX #include <rtl/ref.hxx> -#include "xmloff/functional.hxx" - +#include <comphelper/stl_types.hxx> #include <map> #include "FlatTContext.hxx" typedef ::std::multimap< ::rtl::OUString, ::rtl::Reference< XMLPersTextContentTContext >, - less_functor > XMLMetaContexts_Impl; + ::comphelper::UStringLess > XMLMetaContexts_Impl; class XMLMetaTransformerContext : public XMLTransformerContext |