summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/PropertyInfoHash.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/inc/comphelper/PropertyInfoHash.hxx')
-rw-r--r--comphelper/inc/comphelper/PropertyInfoHash.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/inc/comphelper/PropertyInfoHash.hxx b/comphelper/inc/comphelper/PropertyInfoHash.hxx
index 41671b71532d..3241560b4a94 100644
--- a/comphelper/inc/comphelper/PropertyInfoHash.hxx
+++ b/comphelper/inc/comphelper/PropertyInfoHash.hxx
@@ -44,21 +44,21 @@ namespace comphelper
};
struct eqFunc
{
- sal_Bool operator()( const rtl::OUString &r1,
- const rtl::OUString &r2) const
+ sal_Bool operator()( const OUString &r1,
+ const OUString &r2) const
{
return r1 == r2;
}
};
}
-typedef boost::unordered_map < ::rtl::OUString,
+typedef boost::unordered_map < OUString,
::comphelper::PropertyInfo*,
- ::rtl::OUStringHash,
+ OUStringHash,
::comphelper::eqFunc > PropertyInfoHash;
-typedef boost::unordered_map < ::rtl::OUString,
+typedef boost::unordered_map < OUString,
::comphelper::PropertyData*,
- ::rtl::OUStringHash,
+ OUStringHash,
::comphelper::eqFunc > PropertyDataHash;
#endif