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 /cui | |
parent | 0c55303581156d01992d9d958ac5f7aafc4a3ebb (diff) |
Get rid of comphelper::UStringLess
...default std::less<OUString> is just fine.
Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/dbregistersettings.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cui/source/options/dbregistersettings.hxx b/cui/source/options/dbregistersettings.hxx index d59136b90ddc..68063d960fc3 100644 --- a/cui/source/options/dbregistersettings.hxx +++ b/cui/source/options/dbregistersettings.hxx @@ -20,7 +20,10 @@ #ifndef INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTERSETTINGS_HXX #define INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTERSETTINGS_HXX -#include <comphelper/stl_types.hxx> +#include <sal/config.h> + +#include <map> + #include <svl/poolitem.hxx> //........................................................................ @@ -58,7 +61,7 @@ namespace svx } }; - typedef ::std::map< OUString, DatabaseRegistration, ::comphelper::UStringLess > DatabaseRegistrations; + typedef ::std::map< OUString, DatabaseRegistration > DatabaseRegistrations; //==================================================================== //= DatabaseMapItem |