summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-02-11 14:59:53 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-10 16:02:01 +0100
commit3773fc1e3e1f71b128ddabe5f894af598db0b353 (patch)
tree17394f976e86b424b31b485f2bb5384053212d47 /include/comphelper
parent2323ea6b0cd7338c9e7d5bd4533bf38b9ab8ad9f (diff)
minor spelling fix for comphelper's comparison functors
(cherry picked from commit e4a739338fc31b632f89a81198e0b4a16f98dbc3) Conflicts: comphelper/inc/comphelper/stl_types.hxx Change-Id: I18587958e7458cdd6847f48e8ea41ca92afd7815
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/stl_types.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index cef5afdff3f2..cb96dbd4e12b 100644
--- a/include/comphelper/stl_types.hxx
+++ b/include/comphelper/stl_types.hxx
@@ -43,10 +43,10 @@ namespace comphelper
//.........................................................................
//========================================================================
-// comparisation functions
+// comparison functors
//------------------------------------------------------------------------
- struct UStringLess : public ::std::binary_function< OUString, OUString, bool>
+struct UStringLess : public ::std::binary_function< OUString, OUString, bool>
{
bool operator() (const OUString& x, const OUString& y) const { return x < y ? true : false;} // construct prevents a MSVC6 warning
};