summaryrefslogtreecommitdiff
path: root/unotools/source/config/extendedsecurityoptions.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-17 09:19:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-17 10:08:23 +0100
commitf2be92b68d936c6e9d5e8a96deb1580bcbf8c17f (patch)
tree38c50cace69ddb2e33970a4a540780b51fee82b3 /unotools/source/config/extendedsecurityoptions.cxx
parentdbf2273e45c8b134b1470ee6173ca260e2545fed (diff)
remove OUStringHashCode in favor of OUStringHash
(and as always if you find one, you can be sure there are 6 others in there when you grep for them) Change-Id: I9296ddbdda266c7b6d8a0ac0bc13ec5b6340cee7
Diffstat (limited to 'unotools/source/config/extendedsecurityoptions.cxx')
-rw-r--r--unotools/source/config/extendedsecurityoptions.cxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/unotools/source/config/extendedsecurityoptions.cxx b/unotools/source/config/extendedsecurityoptions.cxx
index 8b1d3a1cce3d..ec6f5cc9d13e 100644
--- a/unotools/source/config/extendedsecurityoptions.cxx
+++ b/unotools/source/config/extendedsecurityoptions.cxx
@@ -47,17 +47,9 @@ using namespace ::com::sun::star::uno ;
#define PROPERTYCOUNT 1
-struct OUStringHashCode
-{
- size_t operator()( const OUString& sString ) const
- {
- return sString.hashCode();
- }
-};
-
class ExtensionHashMap : public ::boost::unordered_map< OUString,
sal_Int32,
- OUStringHashCode,
+ OUStringHash,
::std::equal_to< OUString > >
{
public: