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/inc | |
parent | 0c55303581156d01992d9d958ac5f7aafc4a3ebb (diff) |
Get rid of comphelper::UStringLess
...default std::less<OUString> is just fine.
Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/txtlists.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/xmloff/inc/txtlists.hxx b/xmloff/inc/txtlists.hxx index 447ffa7cf2ac..eb7f8caa5494 100644 --- a/xmloff/inc/txtlists.hxx +++ b/xmloff/inc/txtlists.hxx @@ -21,7 +21,6 @@ #define INCLUDED_XMLOFF_INC_TXTLISTS_HXX #include <rtl/ustring.hxx> -#include <comphelper/stl_types.hxx> #include <map> #include <vector> #include <stack> @@ -138,8 +137,7 @@ class XMLTextListsHelper : private boost::noncopyable // map with <ListId> as key and pair( <ListStyleName, ContinueListId> ) // as value typedef ::std::map< OUString, - ::std::pair< OUString, OUString >, - ::comphelper::UStringLess > tMapForLists; + ::std::pair< OUString, OUString > > tMapForLists; tMapForLists* mpProcessedLists; OUString msLastProcessedListId; OUString msListStyleOfLastProcessedList; @@ -153,8 +151,7 @@ class XMLTextListsHelper : private boost::noncopyable // container type to build up continue list chain: // map with <ListId> of master list as key and <ListId> of last list // continuing the master list as value - typedef ::std::map< OUString, OUString, - ::comphelper::UStringLess > tMapForContinuingLists; + typedef ::std::map< OUString, OUString > tMapForContinuingLists; tMapForContinuingLists* mpContinuingLists; // stack type for opened list elements and its list style: |