Kaydet (Commit) 2410b3c3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

TPropertyValueLessFunctor must actually compare for "<"

Change-Id: I584a410d90531a0f7b784e62f94c39e715713cf1
üst cfdfd1ad
......@@ -187,7 +187,7 @@ namespace
{}
bool operator() (const ::com::sun::star::beans::PropertyValue& lhs, const ::com::sun::star::beans::PropertyValue& rhs) const
{
return !!(lhs.Name.equalsIgnoreAsciiCase( rhs.Name ));
return lhs.Name.compareToIgnoreAsciiCase(rhs.Name) < 0;
}
};
......
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