diff options
author | Daniel Sikeler <d.sikeler94@gmail.com> | 2014-09-12 06:17:03 +0000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-18 13:12:48 +0200 |
commit | 32d6415617b5815bb5d18719f6d2df74becc0997 (patch) | |
tree | 55c7b6d7c068bb6eee60aa0a7add60cc6595513b /extensions | |
parent | d311d85a4d501a0bfef20e610169f20de896a167 (diff) |
fdo#83512 Make use of OUStringHash and OStringHash
Change-Id: I33cafe68c798e3d54943ea1790fa4e73f85e525d
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/ole2uno.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/extensions/source/ole/ole2uno.hxx b/extensions/source/ole/ole2uno.hxx index b6d74d285fdc..37302fc13750 100644 --- a/extensions/source/ole/ole2uno.hxx +++ b/extensions/source/ole/ole2uno.hxx @@ -70,23 +70,6 @@ const VARTYPE getVarType( const Any& val); bool getType( BSTR name, Type & type); void o2u_attachCurrentThread(); -struct equalOUString_Impl -{ - bool operator()(const OUString & s1, const OUString & s2) const - { - return s1 == s2; - } -}; - -struct hashOUString_Impl -{ - size_t operator()(const OUString & rName) const - { - return rName.hashCode(); - } -}; - - class BridgeRuntimeError { public: |