summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-06 11:01:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-06 12:03:58 +0100
commit33035833651d5d0131fe6064a0a24b1e47d8751c (patch)
tree11b82dfb1dc67c70db52dfea6be52445d2067246
parentRemove unused typedefs (diff)
downloadcore-33035833651d5d0131fe6064a0a24b1e47d8751c.tar.gz
core-33035833651d5d0131fe6064a0a24b1e47d8751c.zip
Remove unused comphelper::UStringMixHash
Change-Id: Ie41a0ed7c49a2bb3368179bd198c9de508605931
-rw-r--r--include/comphelper/stl_types.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index 5ab72307dbf5..8ed702abc25a 100644
--- a/include/comphelper/stl_types.hxx
+++ b/include/comphelper/stl_types.hxx
@@ -118,19 +118,6 @@ public:
return !!(lhs.Name == rhs);
}
};
-//------------------------------------------------------------------------
-class UStringMixHash
-{
- sal_Bool m_bCaseSensitive;
-
-public:
- UStringMixHash(sal_Bool bCaseSensitive = sal_True):m_bCaseSensitive(bCaseSensitive){}
- size_t operator() (const OUString& rStr) const
- {
- return m_bCaseSensitive ? rStr.hashCode() : rStr.toAsciiUpperCase().hashCode();
- }
- sal_Bool isCaseSensitive() const {return m_bCaseSensitive;}
-};
//=====================================================================
//= OInterfaceCompare