Kaydet (Commit) 3773fc1e authored tarafından Herbert Dürr's avatar Herbert Dürr Kaydeden (comit) Caolán McNamara

minor spelling fix for comphelper's comparison functors

(cherry picked from commit e4a73933)

Conflicts:
	comphelper/inc/comphelper/stl_types.hxx

Change-Id: I18587958e7458cdd6847f48e8ea41ca92afd7815
üst 2323ea6b
...@@ -43,10 +43,10 @@ namespace comphelper ...@@ -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 bool operator() (const OUString& x, const OUString& y) const { return x < y ? true : false;} // construct prevents a MSVC6 warning
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment