Kaydet (Commit) a58ed493 authored tarafından Korrawit Pruegsanusak's avatar Korrawit Pruegsanusak Kaydeden (comit) Eike Rathke

cppcheck cleaning: duplicate expression on both sides of <

üst 7e1bafb2
......@@ -7543,7 +7543,7 @@ sal_uLong OutputDevice::GetKerningPairCount() const
inline bool CmpKernData( const KerningPair& a, const KerningPair& b )
{
return (a.nChar1 < b.nChar1) || ((a.nChar1 == a.nChar2) && (a.nChar2 < a.nChar2));
return (a.nChar1 < b.nChar1) || ((a.nChar1 == a.nChar2) && (a.nChar2 < b.nChar2));
}
// TODO: best is to get rid of this method completely
......
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