summaryrefslogtreecommitdiff
path: root/include/comphelper/stl_types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/stl_types.hxx')
-rw-r--r--include/comphelper/stl_types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index bb50c21a7e8c..77714d13dc4f 100644
--- a/include/comphelper/stl_types.hxx
+++ b/include/comphelper/stl_types.hxx
@@ -58,7 +58,7 @@ public:
UStringMixEqual(bool bCaseSensitive = true):m_bCaseSensitive(bCaseSensitive){}
bool operator() (const OUString& lhs, const OUString& rhs) const
{
- return m_bCaseSensitive ? lhs.equals( rhs ) : lhs.equalsIgnoreAsciiCase( rhs );
+ return m_bCaseSensitive ? lhs == rhs : lhs.equalsIgnoreAsciiCase( rhs );
}
bool isCaseSensitive() const {return m_bCaseSensitive;}
};