summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-02-11 14:59:53 +0000
committerHerbert Dürr <hdu@apache.org>2013-02-11 14:59:53 +0000
commite4a739338fc31b632f89a81198e0b4a16f98dbc3 (patch)
tree5d19e028f6683ac3d2930bf4117747610a3fb176 /comphelper
parenta71a282ae781b90c31e25eb631537f10fe842492 (diff)
minor spelling fix for comphelper's comparison functors
Notes
Notes: merged as: 3773fc1e3e1f71b128ddabe5f894af598db0b353
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/stl_types.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/inc/comphelper/stl_types.hxx b/comphelper/inc/comphelper/stl_types.hxx
index 6cd73dc57ef4..12bb6a0b8d51 100644
--- a/comphelper/inc/comphelper/stl_types.hxx
+++ b/comphelper/inc/comphelper/stl_types.hxx
@@ -52,10 +52,10 @@ namespace comphelper
//.........................................................................
//========================================================================
-// comparisation functions
+// comparison functors
//------------------------------------------------------------------------
- struct UStringLess : public ::std::binary_function< ::rtl::OUString, ::rtl::OUString, bool>
+struct UStringLess : public ::std::binary_function< ::rtl::OUString, ::rtl::OUString, bool>
{
bool operator() (const ::rtl::OUString& x, const ::rtl::OUString& y) const { return x < y ? true : false;} // construct prevents a MSVC6 warning
};