From e4a739338fc31b632f89a81198e0b4a16f98dbc3 Mon Sep 17 00:00:00 2001 From: Herbert Dürr Date: Mon, 11 Feb 2013 14:59:53 +0000 Subject: minor spelling fix for comphelper's comparison functors --- comphelper/inc/comphelper/stl_types.hxx | 4 ++-- 1 file 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 }; -- cgit