[Libreoffice-commits] core.git: include/comphelper
Herbert Dürr
hdu at apache.org
Fri May 10 08:03:04 PDT 2013
include/comphelper/stl_types.hxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 3773fc1e3e1f71b128ddabe5f894af598db0b353
Author: Herbert Dürr <hdu at apache.org>
Date: Mon Feb 11 14:59:53 2013 +0000
minor spelling fix for comphelper's comparison functors
(cherry picked from commit e4a739338fc31b632f89a81198e0b4a16f98dbc3)
Conflicts:
comphelper/inc/comphelper/stl_types.hxx
Change-Id: I18587958e7458cdd6847f48e8ea41ca92afd7815
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index cef5afd..cb96dbd 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
};
More information about the Libreoffice-commits
mailing list