Author: hdu
Date: Mon Feb 11 15:59:53 2013
New Revision: 1444840

URL: http://svn.apache.org/r1444840
Log:
minor spelling fix for comphelper's comparison functors

Modified:
    openoffice/trunk/main/comphelper/inc/comphelper/stl_types.hxx

Modified: openoffice/trunk/main/comphelper/inc/comphelper/stl_types.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/comphelper/inc/comphelper/stl_types.hxx?rev=1444840&r1=1444839&r2=1444840&view=diff
==============================================================================
--- openoffice/trunk/main/comphelper/inc/comphelper/stl_types.hxx (original)
+++ openoffice/trunk/main/comphelper/inc/comphelper/stl_types.hxx Mon Feb 11 
15:59:53 2013
@@ -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
 };


Reply via email to