summaryrefslogtreecommitdiff
path: root/stoc/source/corereflection/base.hxx
diff options
context:
space:
mode:
authorDaniel Sikeler <d.sikeler94@gmail.com>2014-09-12 06:17:03 +0000
committerStephan Bergmann <sbergman@redhat.com>2014-09-18 13:12:48 +0200
commit32d6415617b5815bb5d18719f6d2df74becc0997 (patch)
tree55c7b6d7c068bb6eee60aa0a7add60cc6595513b /stoc/source/corereflection/base.hxx
parentd311d85a4d501a0bfef20e610169f20de896a167 (diff)
fdo#83512 Make use of OUStringHash and OStringHash
Change-Id: I33cafe68c798e3d54943ea1790fa4e73f85e525d Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'stoc/source/corereflection/base.hxx')
-rw-r--r--stoc/source/corereflection/base.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/corereflection/base.hxx b/stoc/source/corereflection/base.hxx
index 909b182ead58..f49eb74bf6a5 100644
--- a/stoc/source/corereflection/base.hxx
+++ b/stoc/source/corereflection/base.hxx
@@ -78,9 +78,9 @@ inline typelib_TypeDescription * getTypeByName( const OUString & rName )
}
typedef boost::unordered_map< OUString, css::uno::WeakReference< css::reflection::XIdlField >,
- FctHashOUString, std::equal_to< OUString > > OUString2Field;
+ OUStringHash > OUString2Field;
typedef boost::unordered_map< OUString, css::uno::WeakReference< css::reflection::XIdlMethod >,
- FctHashOUString, std::equal_to< OUString > > OUString2Method;
+ OUStringHash > OUString2Method;
class IdlReflectionServiceImpl